2025-02-12 08:43:33 +08:00

32 lines
1.1 KiB
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using ZXK.Framework;
using ZXK.UTility;
/*******************************************************************************
*Create By CG
*Function 힛섬친駕꽉데왠齡
*******************************************************************************/
namespace ZXK.BYSS
{
public class Select3Panel : UIBase
{
private void Start()
{
//董珂칵훰渴箇데禱
//AppManagement.Instance._CurType = EnumCtrl.Type.XHBYJXS;
AddEventListener("TeachBtn_N", UIEventType.OnButtonClick, () =>
{
AppManagement.Instance.ChangeModel(EnumCtrl.Model.Teach);
});
AddEventListener("PracticeBtn_N", UIEventType.OnButtonClick, () =>
{
AppManagement.Instance.ChangeModel(EnumCtrl.Model.Train);
});
AddEventListener("ExamBtn_N", UIEventType.OnButtonClick, () =>
{
AppManagement.Instance.ChangeModel(EnumCtrl.Model.Exam);
});
}
}
}