Files
RedHotRoast-ios/Assets/Scripts/Manager/Base/InterfaceManager.cs
T
2026-04-22 09:52:55 +08:00

10 lines
174 B
C#

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