chore: EnumExtensions added
This commit is contained in:
@@ -2,8 +2,8 @@ namespace Syntriax.Engine.Systems.Time;
|
||||
|
||||
public enum TimerState
|
||||
{
|
||||
Idle,
|
||||
Ticking,
|
||||
Paused,
|
||||
Stopped
|
||||
Idle = 0b0001,
|
||||
Ticking = 0b0010,
|
||||
Paused = 0b0100,
|
||||
Stopped = 0b1000
|
||||
}
|
||||
|
Reference in New Issue
Block a user