aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system/AnimatorSystem.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/system/AnimatorSystem.h')
-rw-r--r--src/crepe/system/AnimatorSystem.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/crepe/system/AnimatorSystem.h b/src/crepe/system/AnimatorSystem.h
index f8179a9..e8a5158 100644
--- a/src/crepe/system/AnimatorSystem.h
+++ b/src/crepe/system/AnimatorSystem.h
@@ -1,9 +1,7 @@
#pragma once
#include "System.h"
-
-//TODO:
-// control if flip works with animation system
+#include "api/LoopTimer.h"
namespace crepe {
@@ -26,6 +24,9 @@ public:
* looping).
*/
void update() override;
+
+private:
+ LoopTimer & timer = LoopTimer::get_instance();
};
} // namespace crepe