12 lines
212 B
C#
12 lines
212 B
C#
|
using UnityEngine;
|
||
|
using Core;
|
||
|
namespace UI
|
||
|
{
|
||
|
public class StartGameButton : UIBase
|
||
|
{
|
||
|
public void StartGame()
|
||
|
{
|
||
|
ScenesManager.Instance.LoadGameplay("Level1");
|
||
|
}
|
||
|
}
|
||
|
}
|