コード例 #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));
 }