9 lines
130 B
C#
9 lines
130 B
C#
namespace QuestShare.Services
|
|
{
|
|
internal interface IService
|
|
{
|
|
void Initialize();
|
|
void Shutdown();
|
|
}
|
|
}
|