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

12 lines
276 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()
{
2025-11-04 16:19:53 +08:00
Debug.Log("GameStart");
GamePreload.Inst.Test("call by GameStart");
2025-11-03 17:46:28 +08:00
}
}