summary refs log tree commit diff stats
path: root/src/sprite.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2021-02-24 10:12:18 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2021-02-24 16:00:53 -0500
commit135e71d650e5a414219729cd84a2c917a3e8f1fb (patch)
tree7d5f2c99a8be34e27bb1644282576371bd0ab98e /src/sprite.h
parentb06b259c54e09f1a4026191d6eec9684599bd370 (diff)
downloadtanetane-135e71d650e5a414219729cd84a2c917a3e8f1fb.tar.gz
tanetane-135e71d650e5a414219729cd84a2c917a3e8f1fb.tar.bz2
tanetane-135e71d650e5a414219729cd84a2c917a3e8f1fb.zip
Removed manual animation stuff
Diffstat (limited to 'src/sprite.h')
-rw-r--r--src/sprite.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/sprite.h b/src/sprite.h index 59d2caf..5750308 100644 --- a/src/sprite.h +++ b/src/sprite.h
@@ -23,7 +23,6 @@ struct SpriteFrame {
23 23
24struct Animation { 24struct Animation {
25 bool looping = true; 25 bool looping = true;
26 bool manual = false;
27 std::vector<int> frameIndices; 26 std::vector<int> frameIndices;
28}; 27};
29 28