summaryrefslogtreecommitdiff
path: root/include/building.h
diff options
context:
space:
mode:
authorJustin Worthe <justin.worthe@gmail.com>2015-08-14 22:12:56 +0200
committerJustin Worthe <justin.worthe@gmail.com>2015-08-14 22:12:56 +0200
commit70ec00285128f8f9f5fa0e848950212e6a235d43 (patch)
tree74fa32322ba07ad7e0387f55c1dd18b06aa8cd8f /include/building.h
parent1da1c8d213ce710a9cafdd560d0d3d3c7fb74d70 (diff)
Added missing sensors
Diffstat (limited to 'include/building.h')
-rw-r--r--include/building.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/building.h b/include/building.h
new file mode 100644
index 0000000..76d78fd
--- /dev/null
+++ b/include/building.h
@@ -0,0 +1,12 @@
+#pragma once
+
+#include "game_entity.h"
+
+class Building : public GameEntity
+{
+public:
+ Building(int x, int y);
+ const static char MISSILE_CONTROLLER_CHAR = 'M';
+ const static char ALIEN_FACTORY_CHAR = 'X';
+};
+