Possibilty to revive death characters
This commit is contained in:
@@ -7,16 +7,7 @@ public abstract class Character : MonoBehaviour
|
||||
public Teams team;
|
||||
|
||||
public abstract bool[,] GetValidMoves(Cell[,] cells, Game game);
|
||||
|
||||
protected bool IsPositionInGrid(int x, int y)
|
||||
{
|
||||
if (x < 0 || y < 0 || x > 7 || y > 7)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public enum Teams
|
||||
|
||||
Reference in New Issue
Block a user