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