24 lines
530 B
C#
24 lines
530 B
C#
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace ZXKFramework
|
|
{
|
|
public class ZhiXueKeStartUI : UIBase
|
|
{
|
|
private ZhiXueKeModel loZhiXueKeModel;
|
|
|
|
public override string GroupName => UIGroup.Main.ToString();
|
|
|
|
public override string Name => "ZhiXueKeStartUI";
|
|
|
|
public override void Init(IUIManager uictrl)
|
|
{
|
|
base.Init(uictrl);
|
|
loZhiXueKeModel = MVC.GetModel<ZhiXueKeModel>();
|
|
}
|
|
}
|
|
}
|