示例#1
0
 public Move(int _points, CardBehaviour _card, DeckController _initialDeck, DeckController _endingDeck)
 {
     PointsGiven = _points;
     Card        = _card;
     CardVal     = _card.GetValue();
     InitialDeck = _initialDeck;
     EndingDeck  = _endingDeck;
 }
示例#2
0
 public void RecordMove(int _points, CardBehaviour _card, DeckController _startingDeck, DeckController _endingDeck)
 {
     RecordMove(new Move(_points, _card, _startingDeck, _endingDeck));
 }