diff --git a/src/object/client/CGObject.hpp b/src/object/client/CGObject.hpp index a64ffcc..9e95c9b 100644 --- a/src/object/client/CGObject.hpp +++ b/src/object/client/CGObject.hpp @@ -1,6 +1,7 @@ #ifndef OBJECT_CLIENT_CG_OBJECT_HPP #define OBJECT_CLIENT_CG_OBJECT_HPP +#include "object/Types.hpp" #include struct CGObjectData { @@ -11,6 +12,12 @@ class CGObject { public: // Public static functions static uint32_t TotalFieldsSaved(); + + // Public member variables + CGObjectData* m_obj; + uint32_t* m_objSaved; + uint32_t m_memHandle; + OBJECT_TYPE_ID m_typeID; }; #endif