mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
feat(object): stub CGObject_C::SetDisablePending
This commit is contained in:
parent
4f9cceda79
commit
f722040986
@ -18,6 +18,10 @@ void CGObject_C::SetBlock(uint32_t block, uint32_t value) {
|
||||
storage[block] = value;
|
||||
}
|
||||
|
||||
void CGObject_C::SetDisablePending(int32_t pending) {
|
||||
// TODO
|
||||
}
|
||||
|
||||
void CGObject_C::SetStorage(uint32_t* storage, uint32_t* saved) {
|
||||
this->m_obj = reinterpret_cast<CGObjectData*>(&storage[CGObject::GetBaseOffset()]);
|
||||
this->m_objSaved = &saved[CGObject::GetBaseOffsetSaved()];
|
||||
|
||||
@ -14,6 +14,7 @@ class CGObject_C : public CGObject, public TSHashObject<CGObject_C, CHashKeyGUID
|
||||
CGObject_C(uint32_t time, CClientObjCreate& objCreate);
|
||||
void AddWorldObject();
|
||||
void SetBlock(uint32_t block, uint32_t value);
|
||||
void SetDisablePending(int32_t pending);
|
||||
void SetStorage(uint32_t* storage, uint32_t* saved);
|
||||
void SetTypeID(OBJECT_TYPE_ID typeID);
|
||||
};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user