20 lines
367 B
C#
20 lines
367 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace TON
|
|
{
|
|
public class TitleUI : UIBase
|
|
{
|
|
public void OnClickStartButton()
|
|
{
|
|
Main.Singleton?.ChangeScene(SceneType.Ingame);
|
|
}
|
|
|
|
public void OnClickExitButton()
|
|
{
|
|
Main.Singleton?.SystemQuit();
|
|
}
|
|
}
|
|
}
|