summaryrefslogtreecommitdiffstats
path: root/src/entities/Entity.h
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-05-05 17:33:32 +0200
committerSergeanur <s.anureev@yandex.ua>2020-05-05 17:33:32 +0200
commit12fbf8ceded75438d1c5ac532f83319405fbb02d (patch)
tree2062de5cd1582676c62ed4f8673eaa5d7ba8a2e4 /src/entities/Entity.h
parentMerge pull request #514 from Nick007J/miami (diff)
parentRemove GTA_TRAIN, GTA_BRIDGE, GTA_ZONECULL (diff)
downloadre3-12fbf8ceded75438d1c5ac532f83319405fbb02d.tar
re3-12fbf8ceded75438d1c5ac532f83319405fbb02d.tar.gz
re3-12fbf8ceded75438d1c5ac532f83319405fbb02d.tar.bz2
re3-12fbf8ceded75438d1c5ac532f83319405fbb02d.tar.lz
re3-12fbf8ceded75438d1c5ac532f83319405fbb02d.tar.xz
re3-12fbf8ceded75438d1c5ac532f83319405fbb02d.tar.zst
re3-12fbf8ceded75438d1c5ac532f83319405fbb02d.zip
Diffstat (limited to '')
-rw-r--r--src/entities/Entity.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/entities/Entity.h b/src/entities/Entity.h
index 49c6932c..ffafa705 100644
--- a/src/entities/Entity.h
+++ b/src/entities/Entity.h
@@ -71,10 +71,8 @@ public:
uint32 bMeleeProof : 1;
uint32 bOnlyDamagedByPlayer : 1;
uint32 bStreamingDontDelete : 1; // Dont let the streaming remove this
-#ifdef GTA_ZONECULL
uint32 bZoneCulled : 1;
uint32 bZoneCulled2 : 1; // only treadables+10m
-#endif
// flagsD
uint32 bRemoveFromWorld : 1; // remove this entity next time it should be processed
@@ -156,7 +154,6 @@ public:
bool GetIsTouching(CVector const &center, float r);
bool GetIsOnScreen(void);
bool GetIsOnScreenComplex(void);
- bool GetIsOnScreenAndNotCulled(void);
bool IsVisible(void) { return m_rwObject && bIsVisible && GetIsOnScreen(); }
bool IsVisibleComplex(void) { return m_rwObject && bIsVisible && GetIsOnScreenComplex(); }
int16 GetModelIndex(void) const { return m_modelIndex; }