powerfun-unity/Assets/RaceStatusScript.cs

21 lines
366 B
C#
Raw Normal View History

2021-07-20 09:58:01 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class RaceBookedScript : MonoBehaviour
{
// Start is called before the first frame update
//private enum ReserveType {1,2,3,4}
[SerializeField]
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}