19 lines
256 B
C++
19 lines
256 B
C++
#pragma once
|
|
|
|
namespace anm2ed
|
|
{
|
|
class Playback
|
|
{
|
|
public:
|
|
float time{};
|
|
bool isPlaying{};
|
|
bool isFinished{};
|
|
|
|
void toggle();
|
|
void clamp(int);
|
|
void tick(int, int, bool);
|
|
void decrement(int);
|
|
void increment(int);
|
|
};
|
|
}
|