Ejemplo n.º 1
0
 public static Window CreateWindow(int width, int height, string title, Monitor monitor, Window share)
 {
     return(Imports.glfwCreateWindow(width, height, title, monitor, share));
 }
Ejemplo n.º 2
0
 public static Window CreateWindow(int width, int height, string title)
 {
     return(Imports.glfwCreateWindow(width, height, title, Monitor.NULL, Window.NULL));
 }