Add debug foundation

This commit is contained in:
2026-04-21 21:16:30 +02:00
parent 693f31dd50
commit cc51f4a6e8
22 changed files with 1246 additions and 12 deletions

View File

@@ -0,0 +1,24 @@
#nullable enable
namespace SideScrollerGame.Debug.Commands;
public enum DebugCommandId
{
ToggleOverlay,
Pause,
Resume,
TogglePause,
FrameStep,
SetTimeScale,
ReloadScene,
RestartMission,
SetDifficulty,
SetSeed,
SpawnActor,
JumpToMarker,
ToggleCollisionShapes,
ToggleGameplayBounds,
ToggleInvulnerability,
ToggleInfiniteSpecialAmmo,
ToggleNoEnemyFire
}