Пример #1
0
        public static void Main(string[] args)
        {
            deck   myDeck    = new deck();
            player newsample = new player("catdaddy!");

            Console.WriteLine(myDeck);
            Console.WriteLine("Hello World!");
        }
Пример #2
0
 public void drawfrom(deck currentDeck)
 {
     hand.Add(currentDeck.Deal());
 }