1234567891011121314151617181920212223242526 |
- using System;
- using SRDebugger.Services;
- using SRDebugger.Services.Implementation;
- using SRF.Service;
- public static class SRDebug
- {
- public static IDebugService Instance
- {
- get
- {
- return SRServiceManager.GetService<IDebugService>();
- }
- }
- public static void Init()
- {
- if (!SRServiceManager.HasService<IConsoleService>())
- {
- new StandardConsoleService();
- }
- SRServiceManager.GetService<IDebugService>();
- }
- public const string Version = "1.6.2";
- }
|