//the enumerated values for the suits in a deck
public enum Suit
{
	CLUBS,
	DIAMONDS,
	HEARTS,
	SPADES,
}