mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
13 lines
331 B
C#
13 lines
331 B
C#
namespace TEngine
|
|
{
|
|
public interface IUIBehaviour
|
|
{
|
|
void ScriptGenerator();
|
|
void RegisterEvent();
|
|
void OnCreate();
|
|
void OnUpdate(float elapseSeconds, float realElapseSeconds);
|
|
void OnClose(bool isShutdown, object userData);
|
|
void OnPause();
|
|
void OnResume();
|
|
}
|
|
} |