Beispiel #1
0
 public Window(string title, WindowPosition position, ScreenResolution resolution, WindowOptions options)
     : this(title, (int)position, (int)position, resolution.Width(), resolution.Height(), options)
 {
 }
Beispiel #2
0
 public Window(string title, int x, WindowPosition y, ScreenResolution resolution, WindowOptions options)
     : this(title, x, (int)y, resolution.Width(), resolution.Height(), options)
 {
 }