diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-07-13 23:50:42 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-07-13 23:50:42 +0300 |
commit | 16bcb81b0509725e4546bcb3c390ca3c1bb7e7b1 (patch) | |
tree | 1db34fd6c50a1421ac186a3652f1e43494881286 /src/resources/animation | |
parent | f5c004a94061cab1685fa063b039dc2eec29cbbe (diff) | |
download | plus-16bcb81b0509725e4546bcb3c390ca3c1bb7e7b1.tar.gz plus-16bcb81b0509725e4546bcb3c390ca3c1bb7e7b1.tar.bz2 plus-16bcb81b0509725e4546bcb3c390ca3c1bb7e7b1.tar.xz plus-16bcb81b0509725e4546bcb3c390ca3c1bb7e7b1.zip |
Add vector.h for use different vectors.
Also replace <vector> include into "utils/vector.h"
Diffstat (limited to 'src/resources/animation')
-rw-r--r-- | src/resources/animation/animation.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/resources/animation/animation.h b/src/resources/animation/animation.h index 1a493c62e..4a672aab2 100644 --- a/src/resources/animation/animation.h +++ b/src/resources/animation/animation.h @@ -23,10 +23,11 @@ #ifndef RESOURCES_ANIMATION_ANIMATION_H #define RESOURCES_ANIMATION_ANIMATION_H -#include "resources/frame.h" #include "resources/memorycounter.h" -#include <vector> +#include "utils/vector.h" + +#include "resources/frame.h" #include "localconsts.h" |