Files
Chess-Unity/Chess Recode/Assets/Scripts/King.cs
T
2021-10-04 23:10:35 +02:00

12 lines
215 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class King : Character
{
public override bool[,] GetValidMoves(Cell[,] cells, Game game)
{
return null;
}
}