mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-27 13:15:38 +00:00
refactor: replace NULL with nullptr across C++ codebase
Excludes vendored C libs (zlib, Miles, DirectXMath, boost, Iggy).
This commit is contained in:
@@ -17,12 +17,12 @@ private:
|
||||
public:
|
||||
UseTileTask(const int tileId, int x, int y, int z, Tutorial* tutorial,
|
||||
int descriptionId, bool enablePreCompletion = false,
|
||||
std::vector<TutorialConstraint*>* inConstraints = NULL,
|
||||
std::vector<TutorialConstraint*>* inConstraints = nullptr,
|
||||
bool bShowMinimumTime = false, bool bAllowFade = true,
|
||||
bool bTaskReminders = true);
|
||||
UseTileTask(const int tileId, Tutorial* tutorial, int descriptionId,
|
||||
bool enablePreCompletion = false,
|
||||
std::vector<TutorialConstraint*>* inConstraints = NULL,
|
||||
std::vector<TutorialConstraint*>* inConstraints = nullptr,
|
||||
bool bShowMinimumTime = false, bool bAllowFade = true,
|
||||
bool bTaskReminders = true);
|
||||
virtual bool isCompleted();
|
||||
|
||||
Reference in New Issue
Block a user