10 lines
178 B
C#
10 lines
178 B
C#
namespace BingoBrain.Core
|
|
{
|
|
public interface InterfaceManager
|
|
{
|
|
void Init();
|
|
void StartUp();
|
|
void DisposeBefore();
|
|
void Dispose();
|
|
}
|
|
} |