Playvoi/Assets/ShiroginSDK/Runtime/Services/Base/IShiroginService.cs
2025-10-30 22:48:16 +03:00

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