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