From b99aef834c1f722e5a4fddc03591a5360ca773a8 Mon Sep 17 00:00:00 2001 From: Andrei Abrudan Date: Sat, 6 Aug 2022 13:48:43 +0100 Subject: [PATCH] Made Entity direction functions const --- cheat-library/src/user/cheat/game/Entity.cpp | 12 ++++++------ cheat-library/src/user/cheat/game/Entity.h | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/cheat-library/src/user/cheat/game/Entity.cpp b/cheat-library/src/user/cheat/game/Entity.cpp index 37c3747..6e0fed3 100644 --- a/cheat-library/src/user/cheat/game/Entity.cpp +++ b/cheat-library/src/user/cheat/game/Entity.cpp @@ -229,7 +229,7 @@ namespace cheat::game SAFE_END(); } - app::Vector3 Entity::forward() + app::Vector3 Entity::forward() const { if (m_RawEntity == nullptr) return {}; @@ -237,12 +237,12 @@ namespace cheat::game return app::MoleMole_BaseEntity_GetForward(m_RawEntity, nullptr); } - app::Vector3 Entity::back() + app::Vector3 Entity::back() const { return -forward(); } - app::Vector3 Entity::right() + app::Vector3 Entity::right() const { if (m_RawEntity == nullptr) return {}; @@ -250,12 +250,12 @@ namespace cheat::game return app::MoleMole_BaseEntity_GetRight(m_RawEntity, nullptr); } - app::Vector3 Entity::left() + app::Vector3 Entity::left() const { return -right(); } - app::Vector3 Entity::up() + app::Vector3 Entity::up() const { if (m_RawEntity == nullptr) return {}; @@ -263,7 +263,7 @@ namespace cheat::game return app::MoleMole_BaseEntity_GetUp(m_RawEntity, nullptr); } - app::Vector3 Entity::down() + app::Vector3 Entity::down() const { return -up(); } diff --git a/cheat-library/src/user/cheat/game/Entity.h b/cheat-library/src/user/cheat/game/Entity.h index 6a4e9b2..7aa96a3 100644 --- a/cheat-library/src/user/cheat/game/Entity.h +++ b/cheat-library/src/user/cheat/game/Entity.h @@ -39,12 +39,12 @@ namespace cheat::game app::Rigidbody* rigidbody(); app::Animator* animator(); - app::Vector3 forward(); - app::Vector3 back(); - app::Vector3 right(); - app::Vector3 left(); - app::Vector3 up(); - app::Vector3 down(); + app::Vector3 forward() const; + app::Vector3 back() const; + app::Vector3 right() const; + app::Vector3 left() const; + app::Vector3 up() const; + app::Vector3 down() const; template T* plugin(void* pClass)