PC-20230316NUNE\Administrator b0a2e4a900 提交完美
2024-10-17 20:36:24 +08:00

23 lines
363 B
C#

using System.Threading.Tasks;
namespace JNGame.Runtime.System
{
public abstract class SystemBase
{
protected bool isStart;
public virtual Task OnInit()
{
isStart = true;
return Task.CompletedTask;
}
public virtual void OnClose()
{
isStart = false;
}
}
}