unity_repo_test/Assets/unity-chan!/Unity-chan! Model/SplashScreen/Scripts/SplashScreen.cs
2025-04-30 10:42:18 +07:00

16 lines
243 B
C#

using UnityEngine;
using System.Collections;
using UnityEngine.SceneManagement;
namespace UnityChan
{
[ExecuteInEditMode]
public class SplashScreen : MonoBehaviour
{
void NextLevel ()
{
//SceneManager.LoadScene();
}
}
}