Refactor...

This commit is contained in:
2025-10-21 20:23:27 -04:00
parent 7f07eaa128
commit 5b0f9a39c4
104 changed files with 17010 additions and 13171 deletions

18
src/playback.h Normal file
View File

@@ -0,0 +1,18 @@
#pragma once
namespace anm2ed::playback
{
class Playback
{
public:
float time{};
bool isPlaying{};
bool isFinished{};
void toggle();
void clamp(int length);
void tick(int fps, int length, bool isLoop);
void decrement(int length);
void increment(int length);
};
}