예제 #1
0
파일: External.cs 프로젝트: OJETeam/GLFW
 public static Window CreateWindow(int width, int height, string title, Monitor monitor, Window share)
 {
     return(Imports.glfwCreateWindow(width, height, title, monitor, share));
 }
예제 #2
0
파일: External.cs 프로젝트: OJETeam/GLFW
 public static Window CreateWindow(int width, int height, string title)
 {
     return(Imports.glfwCreateWindow(width, height, title, Monitor.NULL, Window.NULL));
 }