mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-02 00:32: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;
|
storage[block] = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CGObject_C::SetDisablePending(int32_t pending) {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
|
||||||
void CGObject_C::SetStorage(uint32_t* storage, uint32_t* saved) {
|
void CGObject_C::SetStorage(uint32_t* storage, uint32_t* saved) {
|
||||||
this->m_obj = reinterpret_cast<CGObjectData*>(&storage[CGObject::GetBaseOffset()]);
|
this->m_obj = reinterpret_cast<CGObjectData*>(&storage[CGObject::GetBaseOffset()]);
|
||||||
this->m_objSaved = &saved[CGObject::GetBaseOffsetSaved()];
|
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);
|
CGObject_C(uint32_t time, CClientObjCreate& objCreate);
|
||||||
void AddWorldObject();
|
void AddWorldObject();
|
||||||
void SetBlock(uint32_t block, uint32_t value);
|
void SetBlock(uint32_t block, uint32_t value);
|
||||||
|
void SetDisablePending(int32_t pending);
|
||||||
void SetStorage(uint32_t* storage, uint32_t* saved);
|
void SetStorage(uint32_t* storage, uint32_t* saved);
|
||||||
void SetTypeID(OBJECT_TYPE_ID typeID);
|
void SetTypeID(OBJECT_TYPE_ID typeID);
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user