diff options
author | aap <aap@papnet.eu> | 2021-07-29 19:41:38 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2021-07-29 19:59:34 +0200 |
commit | 3f3e258d7769aa3522602687aea1119f32f3c589 (patch) | |
tree | ca6beec16a570275e5da7dc83d242e4ca4fb86f6 /src/entities/Entity.h | |
parent | Merge branch 'miami' into lcs (diff) | |
download | re3-3f3e258d7769aa3522602687aea1119f32f3c589.tar re3-3f3e258d7769aa3522602687aea1119f32f3c589.tar.gz re3-3f3e258d7769aa3522602687aea1119f32f3c589.tar.bz2 re3-3f3e258d7769aa3522602687aea1119f32f3c589.tar.lz re3-3f3e258d7769aa3522602687aea1119f32f3c589.tar.xz re3-3f3e258d7769aa3522602687aea1119f32f3c589.tar.zst re3-3f3e258d7769aa3522602687aea1119f32f3c589.zip |
Diffstat (limited to 'src/entities/Entity.h')
-rw-r--r-- | src/entities/Entity.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/entities/Entity.h b/src/entities/Entity.h index 239292c5..dbe8c6e2 100644 --- a/src/entities/Entity.h +++ b/src/entities/Entity.h @@ -100,9 +100,9 @@ public: // LCS flagsG uint32 bIsTreeModel : 1; - uint32 m_flagG2 : 1; - uint32 m_flagG4 : 1; - uint32 m_flagG8 : 1; + uint32 bIsVehicle : 1; // not sure what exactly these two are for + uint32 bIsPed : 1; + uint32 bMakeVisible : 1; uint16 m_scanCode; uint16 m_randomSeed; @@ -163,7 +163,9 @@ public: return (RpClump*)m_rwObject; } +#ifdef VIS_DISTANCE_ALPHA void UpdateDistanceFade(void); +#endif void GetBoundCentre(CVUVECTOR &out); CVector GetBoundCentre(void); float GetBoundRadius(void); |