1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
-
- namespace GameFramework.Debugger
- {
-
-
-
- public interface IDebuggerWindowGroup : IDebuggerWindow
- {
-
-
-
- int DebuggerWindowCount
- {
- get;
- }
-
-
-
- int SelectedIndex
- {
- get;
- set;
- }
-
-
-
- IDebuggerWindow SelectedWindow
- {
- get;
- }
-
-
-
- string[] GetDebuggerWindowNames();
-
-
-
-
-
- IDebuggerWindow GetDebuggerWindow(string path);
-
-
-
-
-
- void RegisterDebuggerWindow(string path, IDebuggerWindow debuggerWindow);
- }
- }
|