mirror of
https://github.com/shadowfacts/lwjgl2-arm64.git
synced 2026-04-05 22:45:50 +00:00
19 lines
363 B
Java
19 lines
363 B
Java
|
|
/*
|
||
|
|
* Created on Jul 12, 2011
|
||
|
|
*/
|
||
|
|
|
||
|
|
package org.lwjgl.test.mapped;
|
||
|
|
|
||
|
|
import java.io.File;
|
||
|
|
|
||
|
|
import org.lwjgl.opengl.Display;
|
||
|
|
|
||
|
|
public class MappedObjectWithLibrary
|
||
|
|
{
|
||
|
|
public static void testLWJGL() throws Exception
|
||
|
|
{
|
||
|
|
System.out.println(new File(System.getProperty("java.library.path")).getCanonicalPath());
|
||
|
|
Display.create();
|
||
|
|
}
|
||
|
|
}
|