diff options
| author | Sergeanur <s.anureev@yandex.ua> | 2020-10-18 16:40:06 +0300 |
|---|---|---|
| committer | Sergeanur <s.anureev@yandex.ua> | 2020-10-18 16:40:06 +0300 |
| commit | b91f6a45501634b55f6ef2c08d57c5293d5fd3a0 (patch) | |
| tree | 34cdedbe9dda385d48a416d1c26ef220132d35f0 /src/entities/Entity.h | |
| parent | Cleanup breaks CAutomobile::ProcessOpenDoor (diff) | |
| download | re3-b91f6a45501634b55f6ef2c08d57c5293d5fd3a0.tar.gz | |
Setter for bIsStatic (became virtual in SA)
Diffstat (limited to 'src/entities/Entity.h')
| -rw-r--r-- | src/entities/Entity.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/entities/Entity.h b/src/entities/Entity.h index eca462cd..ba4f7ab0 100644 --- a/src/entities/Entity.h +++ b/src/entities/Entity.h @@ -97,7 +97,8 @@ public: eEntityStatus GetStatus() const { return (eEntityStatus)m_status; } void SetStatus(eEntityStatus status) { m_status = status; } CColModel *GetColModel(void) { return CModelInfo::GetModelInfo(m_modelIndex)->GetColModel(); } - bool IsStatic(void) { return bIsStatic; } + bool GetIsStatic(void) const { return bIsStatic; } + void SetIsStatic(bool state) { bIsStatic = state; } #ifdef COMPATIBLE_SAVES void SaveEntityFlags(uint8*& buf); void LoadEntityFlags(uint8*& buf); |
