Example #1
0
 private void Awake()
 {
     stateTracker = GetComponent <PlayerStateTracker>();
 }
Example #2
0
 public PlayerController(Board board, int maxShips)
 {
     this.stateTracker = new PlayerStateTracker(board, maxShips);
 }