summaryrefslogtreecommitdiffstats
path: root/engine/include/layer.hpp
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2019-01-25 01:11:57 +0100
committerNao Pross <naopross@thearcway.org>2019-01-25 01:11:57 +0100
commitbcd14a356cafe58808b4c2a14782ebb194c6abc5 (patch)
tree3bc95288b0a0172bb447ccf218fb59821f22501a /engine/include/layer.hpp
parentDelete bin and test/makefile update .gitignore (diff)
downloadflatland-bcd14a356cafe58808b4c2a14782ebb194c6abc5.tar.gz
flatland-bcd14a356cafe58808b4c2a14782ebb194c6abc5.zip
Rename everything under engine/ to remove `flat' and be `.hpp'
Diffstat (limited to 'engine/include/layer.hpp')
-rw-r--r--engine/include/layer.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/engine/include/layer.hpp b/engine/include/layer.hpp
new file mode 100644
index 0000000..f4f6734
--- /dev/null
+++ b/engine/include/layer.hpp
@@ -0,0 +1,15 @@
+#ifndef __FLATLAYER_H__
+#define __FLATLAYER_H__
+
+#include "flatcollector.h"
+
+class FlatLayer : public FlatCollector
+{
+
+public:
+
+ FlatLayer(FlatLayer *parent);
+ ~FlatLayer();
+};
+
+#endif