PermanentSelection.cs 346 B

1234567891011
  1. public class PermanentSelection : IPlayerSelection
  2. {
  3. public bool[] IsTurnPlayerList { get; private set; }
  4. public int[] PermanentIDList { get; private set; }
  5. public PermanentSelection(bool[] isTurnPlayerList, int[] permanentIDList)
  6. {
  7. IsTurnPlayerList = isTurnPlayerList;
  8. PermanentIDList = permanentIDList;
  9. }
  10. }