Files
ZooMatch-GP/Assets/Scripts/Manager/Base/InterfaceManager.cs
T
2026-06-02 10:26:44 +08:00

10 lines
188 B
C#

namespace BallKingdomCrush
{
public interface InterfaceManager
{
void Init();
void StartUp();
void DisposeBefore();
void Dispose();
}
}