Files
2025TapTapGameJam/Assets/Script/UI/StartGameButton.cs

12 lines
212 B
C#

using UnityEngine;
using Core;
namespace UI
{
public class StartGameButton : UIBase
{
public void StartGame()
{
ScenesManager.Instance.LoadGameplay("Level1");
}
}
}