Files
DevourClient/lib/ClientHelper.h
Jadis0x 58e36f2eb9 added IsNull function
IsNull(app::Object_1*): detects whether objects are null, works more efficiently than a nullptr check.
2024-05-31 23:24:48 +03:00

16 lines
341 B
C++

#pragma once
bool IsSinglePlayer();
bool IsOnline();
bool IsHost();
bool IsLocalPlayer(app::NolanBehaviour* player);
bool IsPlayerCrawling();
bool IsPlayerCrawling(app::GameObject* go);
bool IsInGame();
bool IsNull(app::Object_1* obj);
app::GameObject* GetAzazel(app::Survival* survival);
std::string SceneName();
float Time_DeltaTime();