mirror of
https://github.com/whoahq/whoa.git
synced 2026-03-05 15:42:17 +03:00
feat(object): add model member to CGObject_C
This commit is contained in:
parent
6e1eb93ff9
commit
4d0c48be52
@ -5,6 +5,10 @@
|
||||
CGObject_C::CGObject_C(uint32_t time, CClientObjCreate& objCreate) {
|
||||
// TODO
|
||||
|
||||
this->m_model = nullptr;
|
||||
|
||||
// TODO
|
||||
|
||||
this->m_lockCount = 0;
|
||||
this->m_disabled = false;
|
||||
this->m_inReenable = false;
|
||||
|
||||
@ -8,12 +8,16 @@
|
||||
#include <storm/Hash.hpp>
|
||||
#include <storm/List.hpp>
|
||||
|
||||
class CM2Model;
|
||||
|
||||
class CGObject_C : public CGObject, public TSHashObject<CGObject_C, CHashKeyGUID> {
|
||||
public:
|
||||
// Public member variables
|
||||
TSLink<CGObject_C> m_link;
|
||||
uint32_t m_disableTimeMs;
|
||||
// TODO
|
||||
CM2Model* m_model;
|
||||
// TODO
|
||||
uint32_t m_lockCount : 16;
|
||||
uint32_t m_disabled : 1;
|
||||
uint32_t m_inReenable : 1;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user