This commit is contained in:
firefighter198
2021-10-04 23:10:35 +02:00
parent 4041338420
commit 12aeb116dd
103 changed files with 9067 additions and 1750 deletions
+11
View File
@@ -0,0 +1,11 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class King : Character
{
public override bool[,] GetValidMoves(Cell[,] cells, Game game)
{
return null;
}
}