unity-towers-of-hanoi/Assets/Disc.cs

15 lines
235 B
C#
Raw Normal View History

2019-03-06 23:00:42 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Disc : MonoBehaviour
{
public int size;
// Update is called once per frame
void Update()
{
}
}