Files
RedHotRoast-ios/Assets/Scripts/ModuleUI/ChatChoose/ChatChooseCtrl.cs
T

25 lines
527 B
C#

namespace RedHotRoast
{
public class ChatChooseCtrl : BaseCtrl
{
public static ChatChooseCtrl Instance { get; private set; }
private ChatChooseModel model;
#region
protected override void OnInit()
{
Instance = this;
//model = ModuleManager.Instance..GetModel(ModelConst.ChatChooseModel) as ChatChooseModel;
}
protected override void OnDispose()
{
Instance = null;
}
#endregion
}
}