DESKTOP-5RP3AKU\Jisol 1ad20b67da 提交Cue案例
2024-10-26 02:35:38 +08:00

21 lines
445 B
C#

using JNGame.Runtime.System;
using JNGame.Util;
namespace GASSamples.Scripts
{
public class App
{
public static readonly JNGResService Resource = new JNGResService();
public static readonly EventDispatcher Event = new EventDispatcher();
public static SystemBase[] AllSystem()
{
return new SystemBase[]
{
Resource
};
}
}
}