diff options
Diffstat (limited to 'src/resources/action.h')
-rw-r--r-- | src/resources/action.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/resources/action.h b/src/resources/action.h index 649d3828..387f1b14 100644 --- a/src/resources/action.h +++ b/src/resources/action.h @@ -34,19 +34,13 @@ class Animation; class Action { public: - /** - * Constructor. - */ Action(); - /** - * Destructor. - */ ~Action(); void setAnimation(int direction, Animation *animation); - Animation* getAnimation(int direction) const; + Animation *getAnimation(int direction) const; protected: typedef std::map<int, Animation*> Animations; |