mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
feat(object): partially implement CGObject_C::Reenable
This commit is contained in:
parent
e2bfef907a
commit
a43ab56644
@ -5,11 +5,11 @@ CGObject_C::CGObject_C(uint32_t time, CClientObjCreate& objCreate) {
|
||||
// TODO
|
||||
|
||||
this->m_lockCount = 0;
|
||||
this->m_disabled = 0;
|
||||
this->m_inReenable = 0;
|
||||
this->m_postInited = 0;
|
||||
this->m_flag19 = 0;
|
||||
this->m_disablePending = 0;
|
||||
this->m_disabled = false;
|
||||
this->m_inReenable = false;
|
||||
this->m_postInited = false;
|
||||
this->m_flag19 = false;
|
||||
this->m_disablePending = false;
|
||||
|
||||
// TODO
|
||||
|
||||
@ -23,6 +23,9 @@ void CGObject_C::AddWorldObject() {
|
||||
}
|
||||
|
||||
void CGObject_C::Reenable() {
|
||||
this->m_disabled = false;
|
||||
this->m_inReenable = true;
|
||||
|
||||
// TODO
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user