예제 #1
0
파일: Glfw.cs 프로젝트: PlumpMath/SharpGlfw
 public static void SetCursor(GlfwWindow window, GlfwCursor cursor)
 {
     GlfwCore.glfwSetCursor(window, cursor);
 }
예제 #2
0
 internal static extern void glfwSetCursor(GlfwWindow window, GlfwCursor cursor);
예제 #3
0
파일: Glfw.cs 프로젝트: PlumpMath/SharpGlfw
 public static void DestroyCursor(GlfwCursor cursor)
 {
     GlfwCore.glfwDestroyCursor(cursor);
 }
예제 #4
0
 internal static extern void glfwDestroyCursor(GlfwCursor cursor);