Messages handling voor spel 1

This commit is contained in:
Frank
2026-01-05 15:27:37 +01:00
parent c0aa2ad44e
commit af13be2196
16 changed files with 681 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace App\Game\Enum;
enum SessionStatus: string
{
case CREATED = 'created';
case READY = 'ready';
case PLAYING = 'playing';
case WON = 'won';
case LOST = 'lost';
}