summaryrefslogtreecommitdiffstats
path: root/src/entities
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-01-20 21:41:41 +0100
committerSergeanur <s.anureev@yandex.ua>2020-01-20 21:58:13 +0100
commita9f39d828426df60876f00a5d2164eb50879b5c9 (patch)
tree739e2dafe2617481334ba7f28a94b1733e19cc1a /src/entities
parentPowerPoints (diff)
downloadre3-a9f39d828426df60876f00a5d2164eb50879b5c9.tar
re3-a9f39d828426df60876f00a5d2164eb50879b5c9.tar.gz
re3-a9f39d828426df60876f00a5d2164eb50879b5c9.tar.bz2
re3-a9f39d828426df60876f00a5d2164eb50879b5c9.tar.lz
re3-a9f39d828426df60876f00a5d2164eb50879b5c9.tar.xz
re3-a9f39d828426df60876f00a5d2164eb50879b5c9.tar.zst
re3-a9f39d828426df60876f00a5d2164eb50879b5c9.zip
Diffstat (limited to 'src/entities')
-rw-r--r--src/entities/Solid.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/entities/Solid.h b/src/entities/Solid.h
new file mode 100644
index 00000000..f4679b3b
--- /dev/null
+++ b/src/entities/Solid.h
@@ -0,0 +1,14 @@
+#pragma once
+
+#include "Entity.h"
+
+class CSolid : public CEntity
+{
+public:
+ CSolid(void) {
+ bRemoveFromWorld = true;
+ bHasHitWall = false;
+ bImBeingRendered = false;
+ m_flagE2 = true;
+ }
+}; \ No newline at end of file