Framework_YooAsset_HybridCLR/Assets/DemoGame/GameScript/Hotfix/UI/IUI.cs

20 lines
410 B
C#

using UnityEngine;
namespace ZC
{
public interface IUI
{
bool isPause { get; }
bool isActive { get; }
GameObject self { get; }
GameObjectBinding uiGameObjectBinding { get; }
void OnInit();
void OnOpen();
void OnUpdate(float dateTime);
void OnClose();
void OnPause();
void OnResume();
void OnDispose();
}
}