Beispiel #1
0
 public void DrawCard(int num, iCard type)
 {
     while(num-- > 0 && handCount < MAX_HAND_SIZE){
         handCount++;
     }
 }
Beispiel #2
0
 public FakeParser(iCard card)
 {
     _card = card;
 }
Beispiel #3
0
 public Manage(IList <iRecord> records, iCard card)
 {
     Records = records;
     Card    = card;
 }