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