summaryrefslogtreecommitdiffstats
path: root/engine/include/actor.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/actor.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/actor.hpp')
-rw-r--r--engine/include/actor.hpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/engine/include/actor.hpp b/engine/include/actor.hpp
new file mode 100644
index 0000000..306ce49
--- /dev/null
+++ b/engine/include/actor.hpp
@@ -0,0 +1,27 @@
+#ifndef __FLATACTOR_H__
+#define __FLATACTOR_H__
+
+#include "flatcollector.h"
+
+class FlatBound;
+
+class FlatActor : public FlatCollector
+{
+ // TODO, event binding
+ // TODO, serial binding
+
+ /* Bounds */
+ FlatBound * bounds;
+
+public:
+
+ FlatActor(FlatCollector *parent = 0, FlatBound *bounds = 0);
+
+ ~FlatActor();
+
+
+ void setBounds(FlatBound * bounds);
+ FlatBound * getBounds() const;
+};
+
+#endif