Advertisement
teleias

Deck

Oct 13th, 2014
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1. package csc135;
  2.  
  3. public class Deck {
  4.     public Deck()
  5.     {
  6.         Card card1 = new Card(Card.Suit.clubs, Card.Value.ace);
  7.         Card card2 = new Card(Card.Suit.diamonds, Card.Value.three);
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement