internal static extern sbyte *glfwGetClipboardString(GLFWwindow window);
예제 #2
0
파일: Program.cs 프로젝트: lodico/glfw-net
 static void callbackWindowSize(GLFWwindow window, int width, int height)
 {
     Console.WriteLine("[glfw_window_size][ w: {0}, h: {1} ]", width, height);
 }
예제 #3
0
 internal static extern sbyte* glfwGetClipboardString(GLFWwindow window);
예제 #4
0
파일: Program.cs 프로젝트: lodico/glfw-net
 static void callbackWindowPos(GLFWwindow window, int xpos, int ypos)
 {
     Console.WriteLine("[glfw_window_pos][ x: {0}, y: {1} ]", xpos, ypos);
 }