|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class GameCtrl : MonoBehaviour
|
|
{
|
|
public void StartPlay()
|
|
{
|
|
GameManager.Instance.NextScene(GameManager.eScene.Play);
|
|
}
|
|
|
|
public void OnSetting()
|
|
{
|
|
SettingWindws.Instance.SetUI(true);
|
|
}
|
|
}
|