diff --git a/src/object/client/CGObject_C.cpp b/src/object/client/CGObject_C.cpp index 7667ad8..07257a0 100644 --- a/src/object/client/CGObject_C.cpp +++ b/src/object/client/CGObject_C.cpp @@ -13,6 +13,10 @@ void CGObject_C::AddWorldObject() { // TODO } +void CGObject_C::Reenable() { + // TODO +} + void CGObject_C::SetBlock(uint32_t block, uint32_t value) { auto storage = reinterpret_cast(this->m_obj); storage[block] = value; diff --git a/src/object/client/CGObject_C.hpp b/src/object/client/CGObject_C.hpp index cd5b442..8ca0416 100644 --- a/src/object/client/CGObject_C.hpp +++ b/src/object/client/CGObject_C.hpp @@ -13,6 +13,7 @@ class CGObject_C : public CGObject, public TSHashObject