summaryrefslogtreecommitdiffstats
path: root/src/entities/Solid.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/entities/Solid.h')
-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