mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 19:34:47 +00:00
13 lines
188 B
C#
13 lines
188 B
C#
using Cysharp.Threading.Tasks;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Plugins.JNGame.System
|
|
{
|
|
public abstract class SystemBase
|
|
{
|
|
|
|
public abstract Task OnInit();
|
|
|
|
}
|
|
}
|