diff options
author | aap <aap@papnet.eu> | 2019-05-17 14:08:18 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-05-17 14:08:18 +0200 |
commit | 5b8f20b08e6a40e2b07df73e90c5e84e259140fe (patch) | |
tree | d8c5977bb4fda8c2521fad3810e4436f1bdf2127 /src/entities/Object.h | |
parent | renames and a fix (diff) | |
download | re3-5b8f20b08e6a40e2b07df73e90c5e84e259140fe.tar re3-5b8f20b08e6a40e2b07df73e90c5e84e259140fe.tar.gz re3-5b8f20b08e6a40e2b07df73e90c5e84e259140fe.tar.bz2 re3-5b8f20b08e6a40e2b07df73e90c5e84e259140fe.tar.lz re3-5b8f20b08e6a40e2b07df73e90c5e84e259140fe.tar.xz re3-5b8f20b08e6a40e2b07df73e90c5e84e259140fe.tar.zst re3-5b8f20b08e6a40e2b07df73e90c5e84e259140fe.zip |
Diffstat (limited to '')
-rw-r--r-- | src/entities/Object.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/entities/Object.h b/src/entities/Object.h index 6992b92d..5d648e07 100644 --- a/src/entities/Object.h +++ b/src/entities/Object.h @@ -8,6 +8,8 @@ enum { TEMP_OBJECT = 3, }; +class CVehicle; + class CObject : public CPhysical { public: @@ -39,7 +41,7 @@ public: int8 field_186; int8 field_187; CEntity *m_pCurSurface; - CEntity *field_18C; + CVehicle *m_pCollidingVehicle; int8 m_colour1, m_colour2; static void *operator new(size_t); |