ProjectDDD/Assets/Scirpts/Title.cs
2025-06-25 11:33:17 +09:00

25 lines
331 B
C#

using Superlazy;
using UnityEngine;
public class Title : SLGameComponent
{
public override void Begin()
{
}
public override void Update()
{
}
public override void End()
{
}
public void GameStart(SLEntity context)
{
SLGame.Session["CurrentMode"] = "Restaurant";
}
}