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

9 lines
150 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Cell : MonoBehaviour
{
public Character connected;
}