From 70ec00285128f8f9f5fa0e848950212e6a235d43 Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Fri, 14 Aug 2015 22:12:56 +0200 Subject: Added missing sensors --- include/building.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 include/building.h (limited to 'include/building.h') 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'; +}; + -- cgit v1.2.3