CardSelection.cs 189 B

123456789
  1. public class CardSelection : IPlayerSelection
  2. {
  3. public int[] CardIDList { get; private set; }
  4. public CardSelection(int[] cardIDList)
  5. {
  6. CardIDList = cardIDList;
  7. }
  8. }