Playvoi/Assets/ShiroginSDK/Runtime/Services/Base/IShiroginService.cs

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();
}
}