add: isPlayerCrawling function

This commit is contained in:
jadis0x
2022-10-01 22:08:18 +03:00
committed by GitHub
parent 6c0ffa8326
commit 761b86fc08

View File

@@ -1,3 +1,6 @@
#include "Helpers.hpp"
//define functions the same as in misc.hpp/cpp
//define functions the same as in misc.hpp/cpp
bool Helpers::isPlayerCrawling() {
return Players::LocalPlayer->GetComponent("NolanBehaviour")->CallMethod<bool*>("IsCrawling");
}