Well, it’s loading them in, now it’s doing this.
Exception in thread "main" java.lang.NoSuchMethodError: getPointer
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(Unknown Source)
at java.lang.ClassLoader.loadLibrary(Unknown Source)
at java.lang.Runtime.loadLibrary0(Unknown Source)
at java.lang.System.loadLibrary(Unknown Source)
at org.lwjgl.Sys$1.run(Sys.java:75)
at java.security.AccessController.doPrivileged(Native Method)
at org.lwjgl.Sys.doLoadLibrary(Sys.java:68)
at org.lwjgl.Sys.loadLibrary(Sys.java:84)
at org.lwjgl.Sys.<clinit>(Sys.java:101)
at org.lwjgl.opengl.Display.<clinit>(Display.java:128)
at org.newdawn.slick.AppGameContainer$1.run(AppGameContainer.java:39)
at java.security.AccessController.doPrivileged(Native Method)
at org.newdawn.slick.AppGameContainer.<clinit>(AppGameContainer.java:36)
at edu.bgp.global.Game.main(Game.java:32)
Alright! Fixed it.
I looked over the error and figured it must be related to one of the files being older than another, and then I realized that I was using the lwjgl jar that came with slick. I replaced it with the one from the website, and it fixed my problem.
As related to the missing lwjgl error from earlier, I went to build paths, found lwjgl, lowered the tree, and added the locations of the natives to Natives property. (As ra4king suggested) That’s for anyone who may have the same problem, as the VM argument didn’t work out for me!
Thanks for the help guys.