mirror of
https://github.com/HoonTB/Project-AS.git
synced 2025-12-26 11:51:21 +09:00
10 lines
176 B
C#
10 lines
176 B
C#
using UnityEngine;
|
|
|
|
public class GameManager : MonoBehaviour
|
|
{
|
|
public void LoadScene()
|
|
{
|
|
UnityEngine.SceneManagement.SceneManager.LoadScene("In-Game");
|
|
}
|
|
}
|