Files
Chess-Unity/Chess/Assets/Scripts/Character.cs
T
2021-10-02 23:20:54 +02:00

15 lines
251 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Character : MonoBehaviour
{
public Team team;
public CharacterType type;
}
public enum CharacterType
{
Rook, Knight, Bishop, Queen, King, Pawn
}