Possibilty to revive death characters

This commit is contained in:
firefighter198
2021-10-05 21:59:05 +02:00
parent 69339f2001
commit 92564bf817
8 changed files with 13130 additions and 9236 deletions
+1 -10
View File
@@ -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