mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
20 lines
250 B
C#
20 lines
250 B
C#
namespace TEngine
|
|
{
|
|
public interface ILogicSys
|
|
{
|
|
bool OnInit();
|
|
|
|
void OnDestroy();
|
|
|
|
void OnStart();
|
|
|
|
void OnUpdate();
|
|
|
|
void OnLateUpdate();
|
|
|
|
void OnPause();
|
|
|
|
void OnResume();
|
|
}
|
|
|
|
} |