diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-08 22:47:30 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-08 22:47:30 +0300 |
commit | 64aabf79b5a10bdf8192bb1048804a3e36730905 (patch) | |
tree | ab7f8a82228acd617ec178f04d7ca6bb09f727de /src/resources/action.h | |
parent | 3f9d0c023f3d84de0c68dbf9f7c29aa1b0abb9c9 (diff) | |
download | plus-64aabf79b5a10bdf8192bb1048804a3e36730905.tar.gz plus-64aabf79b5a10bdf8192bb1048804a3e36730905.tar.bz2 plus-64aabf79b5a10bdf8192bb1048804a3e36730905.tar.xz plus-64aabf79b5a10bdf8192bb1048804a3e36730905.zip |
Fix code style in resources.
Diffstat (limited to 'src/resources/action.h')
-rw-r--r-- | src/resources/action.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/resources/action.h b/src/resources/action.h index 92fadfc89..64d8b40d8 100644 --- a/src/resources/action.h +++ b/src/resources/action.h @@ -23,6 +23,8 @@ #ifndef RESOURCES_ACTION_H #define RESOURCES_ACTION_H +#include "resources/spritedef.h" + #include <map> #include "localconsts.h" @@ -41,10 +43,10 @@ class Action final ~Action(); - void setAnimation(const int direction, + void setAnimation(const SpriteDirection direction, Animation *const animation) noexcept; - const Animation *getAnimation(int direction) const + const Animation *getAnimation(SpriteDirection direction) const noexcept A_WARN_UNUSED; unsigned getNumber() const noexcept A_WARN_UNUSED |