Files
TuanTuan-Engine/Assets/GameScripts/Main/GameStart.cs

17 lines
280 B
C#
Raw Normal View History

2025-11-03 17:46:28 +08:00
using UnityEngine;
public class GameStart : MonoBehaviour
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}