mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 03:14:47 +00:00
21 lines
445 B
C#
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
|
|
};
|
|
}
|
|
}
|
|
} |