Fix #32 , Added Freeze Enemies

This commit is contained in:
Joaquin
2022-07-24 21:24:36 -06:00
parent ecf7c69ff7
commit d7f91f2393
9 changed files with 119 additions and 1 deletions

View File

@ -205,6 +205,18 @@ namespace cheat::game
SAFE_END();
}
app::Animator* Entity::animator()
{
if (!isLoaded())
return nullptr;
SAFE_BEGIN();
return app::MoleMole_BaseEntity_get_animator(m_RawEntity, nullptr);
SAFE_ERROR();
return nullptr;
SAFE_END();
}
app::GameObject* Entity::gameObject()
{
if (!isLoaded())