19 lines
378 B
C#
19 lines
378 B
C#
namespace BallKingdomCrush
|
|
{
|
|
public class NetLoadingCtrl : BaseCtrl
|
|
{
|
|
public static NetLoadingCtrl Instance { get; private set; }
|
|
|
|
private NetLoadingModel model;
|
|
|
|
protected override void OnInit()
|
|
{
|
|
Instance = this;
|
|
}
|
|
|
|
protected override void OnDispose()
|
|
{
|
|
Instance = null;
|
|
}
|
|
}
|
|
} |