oecs-sharp/Game.Blackjack/Singletons/RoundResult.cs

12 lines
185 B
C#

namespace Game.Blackjack;
public enum RoundResult : byte
{
None = 0,
PlayerBust = 1,
DealerBust = 2,
PlayerWin = 3,
DealerWin = 4,
Push = 5,
Blackjack = 6
}