15 lines
287 B
C#
15 lines
287 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace AibisDream
|
|
{
|
|
public class StartMenuViewer : Singleton<StartMenuViewer>
|
|
{
|
|
public void HideStartMenu()
|
|
{
|
|
gameObject.gameObject.SetActive(false);
|
|
}
|
|
}
|
|
}
|