24 lines
643 B
C#
24 lines
643 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);
|
|
|
|
// TODO: 현재 가지고 있는 캐릭터가 없다면 CharaterCreateUI 를 보여주고
|
|
UIManager.Show<CharaterCreateUI>(UIList.CharaterCreateUI);
|
|
// TODO: 캐릭터가 있다면 내 캐릭터 목록에서 선택할 수 있도록 함
|
|
}
|
|
|
|
public void OnClickExitButton()
|
|
{
|
|
Main.Singleton?.SystemQuit();
|
|
}
|
|
}
|
|
}
|