diff options
Diffstat (limited to 'engine/include/flatactor.h')
-rw-r--r-- | engine/include/flatactor.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/engine/include/flatactor.h b/engine/include/flatactor.h index 8e2d3d3..306ce49 100644 --- a/engine/include/flatactor.h +++ b/engine/include/flatactor.h @@ -2,11 +2,10 @@ #define __FLATACTOR_H__ #include "flatcollector.h" -#include "flatevolvable.h" class FlatBound; -class FlatActor : public FlatCollector, public FlatEvolvable +class FlatActor : public FlatCollector { // TODO, event binding // TODO, serial binding @@ -20,7 +19,6 @@ public: ~FlatActor(); - virtual void evolve(float dt) override; void setBounds(FlatBound * bounds); FlatBound * getBounds() const; |