//--------------------------------------------------------
|
// [Author]: 第二世界
|
// [ Date ]: Tuesday, October 10, 2017
|
//--------------------------------------------------------
|
|
using System;
|
using System.Collections;
|
using System.Collections.Generic;
|
using UnityEngine;
|
using UnityEngine.UI;
|
|
using Snxxz.UI;
|
using EnhancedUI.EnhancedScroller;
|
|
namespace Snxxz.UI
|
{
|
[XLua.Hotfix]
|
public class RealmUpWin : Window
|
{
|
protected override void AddListeners()
|
{
|
throw new NotImplementedException();
|
}
|
|
protected override void BindController()
|
{
|
throw new NotImplementedException();
|
}
|
|
protected override void OnAfterClose()
|
{
|
throw new NotImplementedException();
|
}
|
|
protected override void OnAfterOpen()
|
{
|
throw new NotImplementedException();
|
}
|
|
protected override void OnPreClose()
|
{
|
throw new NotImplementedException();
|
}
|
|
protected override void OnPreOpen()
|
{
|
throw new NotImplementedException();
|
}
|
}
|
}
|
|
|
|
|