1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
-
- namespace GameFramework.Debugger
- {
-
-
-
- public interface IDebuggerManager
- {
-
-
-
- bool ActiveWindow
- {
- get;
- set;
- }
-
-
-
- IDebuggerWindowGroup DebuggerWindowRoot
- {
- get;
- }
-
-
-
-
-
-
- void RegisterDebuggerWindow(string path, IDebuggerWindow debuggerWindow, params object[] args);
-
-
-
-
-
- IDebuggerWindow GetDebuggerWindow(string path);
- }
- }
|