Skip to content

Commit 926f748

Browse files
committed
setup lwjgl library
1 parent 3d6351d commit 926f748

File tree

7 files changed

+19
-2
lines changed

7 files changed

+19
-2
lines changed

build.gradle

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,7 @@ repositories {
1010
}
1111

1212
dependencies {
13-
13+
compile group: 'org.lwjgl.lwjgl', name: 'lwjgl', version: '2.9.3'
14+
compile group: 'org.lwjgl.lwjgl', name: 'lwjgl_util', version: '2.9.3'
15+
compile group: 'org.lwjgl.lwjgl', name: 'lwjgl-platform', version: '2.9.3', ext: 'pom'
1416
}
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

run/natives/OpenAL32.dll

381 KB
Binary file not shown.

run/natives/OpenAL64.dll

374 KB
Binary file not shown.

run/natives/lwjgl.dll

299 KB
Binary file not shown.

run/natives/lwjgl64.dll

310 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package com.mojang.rubydung;
2+
3+
import org.lwjgl.LWJGLException;
4+
5+
public class RubyDung implements Runnable {
6+
7+
@Override
8+
public void run() {
9+
System.out.println("Hello World!");
10+
}
11+
12+
public static void main(String[] args) throws LWJGLException {
13+
new Thread(new RubyDung()).start();
14+
}
15+
}

0 commit comments

Comments
 (0)