From bcd14a356cafe58808b4c2a14782ebb194c6abc5 Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Fri, 25 Jan 2019 01:11:57 +0100 Subject: Rename everything under engine/ to remove `flat' and be `.hpp' --- engine/include/actor.hpp | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 engine/include/actor.hpp (limited to 'engine/include/actor.hpp') 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 -- cgit v1.2.1