chore: EnumExtensions added

This commit is contained in:
2025-03-31 16:46:19 +03:00
parent e8ef41af41
commit 90c1dd9348
2 changed files with 13 additions and 4 deletions

View File

@@ -2,8 +2,8 @@ namespace Syntriax.Engine.Systems.Time;
public enum TimerState
{
Idle,
Ticking,
Paused,
Stopped
Idle = 0b0001,
Ticking = 0b0010,
Paused = 0b0100,
Stopped = 0b1000
}