mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 19:34:47 +00:00
32 lines
762 B
C#
32 lines
762 B
C#
using HotScripts.GameScripts.FGui;
|
|
using HotScripts.GameScripts.Luban;
|
|
using JNGame.Runtime.System;
|
|
using JNGame.Util;
|
|
|
|
namespace HotScripts.GameScripts
|
|
{
|
|
public class App
|
|
{
|
|
|
|
//Launcher 事件
|
|
public static SHFrame.EventDispatcher EventLauncher => SHFrame.EventUtil.Dispatcher;
|
|
//App 事件
|
|
public static EventDispatcher Event = new EventDispatcher();
|
|
|
|
//Luban 配置
|
|
public static LubanManager Luban = new LubanManager();
|
|
|
|
//UI
|
|
public static FGuiManager UI = new FGuiManager();
|
|
|
|
public static SystemBase[] AllSystem()
|
|
{
|
|
return new SystemBase[]
|
|
{
|
|
Luban,
|
|
UI,
|
|
};
|
|
}
|
|
|
|
}
|
|
} |