10 lines
179 B
C#
10 lines
179 B
C#
namespace BallKingdomCrush
|
|
{
|
|
public interface InterfaceManager
|
|
{
|
|
void Init();
|
|
void StartUp();
|
|
void DisposeBefore();
|
|
void Dispose();
|
|
}
|
|
} |