Problems importing with LWJGL [closed]

0

Hello, I followed in the footsteps of video , and got the example of official website .

Attempting to import says the method is undefined :

    
asked by anonymous 18.01.2016 / 19:45

1 answer

1

I think it did not work because some import static was missing.

Try adding this excerpt to the beginning of the Main.java file:

import static org.lwjgl.glfw.GLFW.*;
import static org.lwjgl.opengl.GL11.*;
import static org.lwjgl.system.MemoryUtil.*;
    
18.01.2016 / 21:59