コード例 #1
0
ファイル: Win32Platform.Window.cs プロジェクト: Cryru/Emotion
 protected override Vector2 GetSize()
 {
     User32.GetClientRect(_windowHandle, out Rect rect);
     return(new Vector2(rect.Right, rect.Bottom));
 }