resolve comments

This commit is contained in:
Aaron Kimbre
2022-05-18 06:36:21 -05:00
parent 9169d844e2
commit 813aca9d20
2 changed files with 7 additions and 7 deletions

View File

@@ -14,7 +14,7 @@
class Entity;
enum eClimbableType : int32_t {
enum class eClimbableType : int32_t {
CLIMBABLE_TYPE_NOT = 0,
CLIMBABLE_TYPE_LADDER,
CLIMBABLE_TYPE_WALL,
@@ -146,7 +146,7 @@ private:
/**
* Whether or not the entity is climbable
*/
eClimbableType m_ClimbableType = CLIMBABLE_TYPE_NOT;
eClimbableType m_ClimbableType = eClimbableType::CLIMBABLE_TYPE_NOT;
};
#endif // SIMPLEPHYSICSCOMPONENT_H