summaryrefslogtreecommitdiff
path: root/BaseUnit.h
diff options
context:
space:
mode:
authorXaviDCR92 <xavi.dcr@gmail.com>2018-07-09 23:20:46 +0200
committerXaviDCR92 <xavi.dcr@gmail.com>2018-07-09 23:20:46 +0200
commit188d74cb789f33967daf6daa5af17d41b6f59d4e (patch)
tree402953b5063497be39572093b7c5c4ec75b6136d /BaseUnit.h
parent8ed9a3a57ad08bac4e8441b0b87ddc946296a3fd (diff)
downloadpocketempires-188d74cb789f33967daf6daa5af17d41b6f59d4e.tar.gz
Unit renamed to BaseUnit.
Diffstat (limited to 'BaseUnit.h')
-rw-r--r--BaseUnit.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/BaseUnit.h b/BaseUnit.h
new file mode 100644
index 0000000..485ac94
--- /dev/null
+++ b/BaseUnit.h
@@ -0,0 +1,36 @@
+#ifndef BASEUNIT_H__
+#define BASEUNIT_H__
+
+/* *******************************************************************
+ * Includes
+ * ******************************************************************/
+
+#include "BaseUnit.h"
+
+/* *******************************************************************
+ * Defines
+ * ******************************************************************/
+
+/* *******************************************************************
+ * Global types definition
+ * ******************************************************************/
+
+/* *******************************************************************
+ * Global variables declaration
+ * ******************************************************************/
+
+/* *******************************************************************
+ * Global functions declaration
+ * ******************************************************************/
+
+/* *******************************************************************
+ * Class definition
+ * ******************************************************************/
+
+class BaseUnit
+{
+ public:
+ explicit BaseUnit(void);
+};
+
+#endif /* BASEUNIT_H__ */