ok so it compiles fine but when I run it I get this
java.lang.NoClassDefFoundError: Could not initialize class org.lwjgl.opengl.Display
at Game.cleanup(Game.java:105)
at Game.main(Game.java:40)
so I quoted out the line to see wat happens, it compiles fine once again. then I get this:
java.lang.UnsatisfiedLinkError: no lwjgl in java.library.path
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1682)
at java.lang.Runtime.loadLibrary0(Runtime.java:823)
at java.lang.System.loadLibrary(System.java:1030)
at org.lwjgl.Sys$1.run(Sys.java:72)
at java.security.AccessController.doPrivileged(Native Method)
at org.lwjgl.Sys.doLoadLibrary(Sys.java:65)
at org.lwjgl.Sys.loadLibrary(Sys.java:81)
at org.lwjgl.Sys.<clinit>(Sys.java:98)
at org.lwjgl.opengl.Display.<clinit>(Display.java:129)
at Game.init(Game.java:51)
at Game.main(Game.java:34)
I got the code form http://gpwiki.org/index.php/OpenGL:Tutorials:Java:LWJGL:Introduction
thx in advance 