Initial commit

This commit is contained in:
2024-08-11 14:32:14 +08:00
commit 3c0c311dab
979 changed files with 114044 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace AibisDream
{
public class StartMenuViewer : Singleton<StartMenuViewer>
{
public void HideStartMenu()
{
gameObject.gameObject.SetActive(false);
}
}
}