mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 05:05:31 +00:00
Added a couple of #region directives.
This commit is contained in:
parent
0843505943
commit
827fda8e58
|
@ -20,6 +20,8 @@ namespace OpenTK.Platform.Windows
|
|||
private IntPtr handle;
|
||||
private WindowInfo parent;
|
||||
|
||||
#region --- Constructors ---
|
||||
|
||||
public WindowInfo()
|
||||
{
|
||||
}
|
||||
|
@ -65,6 +67,8 @@ namespace OpenTK.Platform.Windows
|
|||
this.CopyInfoFrom(window.WindowInfo);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region --- IWindowInfo Members ---
|
||||
|
||||
public IntPtr Handle
|
||||
|
@ -126,10 +130,14 @@ namespace OpenTK.Platform.Windows
|
|||
|
||||
#endregion
|
||||
|
||||
#region public override string ToString()
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return String.Format("Windows.WindowInfo: Handle {0}, Parent ({1})",
|
||||
this.Handle, this.Parent != null ? this.Parent.ToString() : "null");
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue