public override void Start() { if (allowUserInteraction()) { // Current player is under user control, so highlight the cells the player can move. CombatLocation location = CurrentPlayer.Location; int radius = CurrentPlayer.MyAttributes.actionPoints; MyBoard.selectAttackCells(location.i, location.j, radius); } base.Start(); }