10 lines
151 B
C#
10 lines
151 B
C#
namespace Syntriax.Engine.Systems.Time;
|
|
|
|
public enum TimerState
|
|
{
|
|
Idle = 0b0001,
|
|
Ticking = 0b0010,
|
|
Paused = 0b0100,
|
|
Stopped = 0b1000
|
|
}
|