oecs-sharp/Blackjack/Singletons/GamePhase.cs

10 lines
146 B
C#
Raw Normal View History

2026-07-18 23:26:56 +08:00
namespace Blackjack;
public enum GamePhase : byte
{
Betting = 0,
Dealing = 1,
PlayerTurn = 2,
DealerTurn = 3,
RoundOver = 4
}