예제 #1
0
 protected CellGridState(CellGrid cellGrid)
 {
     _cellGrid = cellGrid;
 }
예제 #2
0
파일: Player.cs 프로젝트: KLNHOMEALONE/XOps
 /// <summary>
 /// Method is called every turn. Allows player to interact with his units.
 /// </summary>
 public abstract void Play(CellGrid cellGrid);
예제 #3
0
 public CellGridStateUnitSelected(CellGrid cellGrid, Unit unit) : base(cellGrid)
 {
     _unit         = unit;
     _pathsInRange = new List <Cell>();
     _unitsInRange = new List <Unit>();
 }