feat: scene chekout template completed

This commit is contained in:
2026-07-06 00:46:40 +08:00
parent 99bcfccc94
commit 491d6a812f
333 changed files with 60020 additions and 110 deletions

View File

@@ -0,0 +1,12 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class StartGame : MonoBehaviour
{
public void Startgame()
{
SceneManager.LoadScene("SampleScene");
}
}