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

9 lines
151 B
C#

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