The Game Version 1.0

This commit is contained in:
firefighter198
2021-10-02 23:20:54 +02:00
parent 86fbfc0c57
commit 7f5de81b9f
80 changed files with 22162 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
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
}