diff options
author | aap <aap@papnet.eu> | 2019-06-18 09:50:26 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-06-18 09:50:26 +0200 |
commit | 3b64bd1b4a5008b14b54edb257d4e8a5a8277c26 (patch) | |
tree | ca1ba1aef3b1c654f586d43b12dc27ea41c513b8 /src/entities/Building.h | |
parent | fixed anim bug (diff) | |
download | re3-3b64bd1b4a5008b14b54edb257d4e8a5a8277c26.tar re3-3b64bd1b4a5008b14b54edb257d4e8a5a8277c26.tar.gz re3-3b64bd1b4a5008b14b54edb257d4e8a5a8277c26.tar.bz2 re3-3b64bd1b4a5008b14b54edb257d4e8a5a8277c26.tar.lz re3-3b64bd1b4a5008b14b54edb257d4e8a5a8277c26.tar.xz re3-3b64bd1b4a5008b14b54edb257d4e8a5a8277c26.tar.zst re3-3b64bd1b4a5008b14b54edb257d4e8a5a8277c26.zip |
Diffstat (limited to 'src/entities/Building.h')
-rw-r--r-- | src/entities/Building.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/entities/Building.h b/src/entities/Building.h index d33aaa4f..612e0fb3 100644 --- a/src/entities/Building.h +++ b/src/entities/Building.h @@ -6,7 +6,10 @@ class CBuilding : public CEntity { public: // TODO: ReplaceWithNewModel - // TODO: ctor + CBuilding(void) { + m_type = ENTITY_TYPE_BUILDING; + bUsesCollision = true; + } static void *operator new(size_t); static void operator delete(void*, size_t); |