summaryrefslogtreecommitdiffstats
path: root/src/buildings/Solid.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildings/Solid.h')
-rw-r--r--src/buildings/Solid.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/buildings/Solid.h b/src/buildings/Solid.h
new file mode 100644
index 00000000..4ca800c2
--- /dev/null
+++ b/src/buildings/Solid.h
@@ -0,0 +1,12 @@
+#pragma once
+
+#include "Entity.h"
+
+class CSolid : public CEntity
+{
+public:
+ CSolid(void) {
+ m_type = ENTITY_TYPE_BUILDING;
+ bUsesCollision = true;
+ }
+}; \ No newline at end of file