DESKTOP-5RP3AKU\Jisol 0d600a2786 提交
2024-10-17 03:20:22 +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;
}
}
}