12 lines
No EOL
281 B
C#
12 lines
No EOL
281 B
C#
namespace ShiroginSDK.Runtime.Services.Base
|
|
{
|
|
/// <summary>
|
|
/// Base interface implemented by all SDK services.
|
|
/// </summary>
|
|
public interface IShiroginService
|
|
{
|
|
bool IsInitialized { get; }
|
|
void Initialize();
|
|
void Dispose();
|
|
}
|
|
} |