mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-25 12:25:10 -08:00
10 lines
95 B
C#
10 lines
95 B
C#
namespace Poker.Cards;
|
|
|
|
internal enum Suit
|
|
{
|
|
Clubs,
|
|
Diamonds,
|
|
Hearts,
|
|
Spades
|
|
}
|