mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 19:34:47 +00:00
18 lines
362 B
C#
18 lines
362 B
C#
using System;
|
|
using Cysharp.Threading.Tasks;
|
|
using Plugins.JNGame.System;
|
|
using UnityEngine;
|
|
|
|
namespace Plugins.JNGame
|
|
{
|
|
public static class JNGame
|
|
{
|
|
public static async UniTask Init(SystemBase[] systems)
|
|
{
|
|
foreach (var system in systems)
|
|
{
|
|
await system.OnInit();
|
|
}
|
|
}
|
|
}
|
|
} |