7 lines
84 B
C#
7 lines
84 B
C#
|
public enum Suit
|
||
|
{
|
||
|
Hearts = 0,
|
||
|
Diamonds = 1,
|
||
|
Spades = 2,
|
||
|
Clubs = 3
|
||
|
}
|