Skip to content
This repository was archived by the owner on Dec 23, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions .gitattributes

This file was deleted.

6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,8 @@ out/
.idea/
*.iml
src/META-INF/MANIFEST.MF
.metadata/
.metadata/
/.gradle/
/build/
.settings/
.project
17 changes: 0 additions & 17 deletions .project

This file was deleted.

2 changes: 0 additions & 2 deletions .settings/org.eclipse.core.resources.prefs

This file was deleted.

285 changes: 0 additions & 285 deletions .settings/org.eclipse.jdt.core.prefs

This file was deleted.

3 changes: 0 additions & 3 deletions .settings/org.eclipse.jdt.ui.prefs

This file was deleted.

File renamed without changes.
30 changes: 30 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
apply plugin: "java"
apply plugin: "application"

version = "pre5"
mainClassName = "com.mrcrayfish.modelcreator.Start"
sourceCompatibility = targetCompatibility = 1.8

repositories {
mavenCentral()
}

dependencies {
compile 'com.google.code.gson:gson:2.8.5'
compile 'org.slick2d:slick2d-core:1.0.2'
compile 'com.jtattoo:JTattoo:1.6.11'

compile 'org.lwjgl.lwjgl:lwjgl:2.9.3'
compile 'org.lwjgl.lwjgl:lwjgl_util:2.9.3'
compile 'org.lwjgl.lwjgl:lwjgl-platform:2.9.3'
}

jar {
manifest {
attributes "Main-Class": mainClassName
}

from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 5 additions & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
172 changes: 172 additions & 0 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

84 changes: 84 additions & 0 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file removed libs/JTattoo-1.6.11.jar
Binary file not shown.
Binary file removed libs/gson-2.3.1.jar
Binary file not shown.
Binary file removed libs/lwjgl.jar
Binary file not shown.
Binary file removed libs/lwjgl_util.jar
Binary file not shown.
Binary file removed libs/slick-util.jar
Binary file not shown.
Binary file removed natives/linux/libjinput-linux.so
Binary file not shown.
Binary file removed natives/linux/libjinput-linux64.so
Binary file not shown.
Binary file removed natives/linux/liblwjgl.so
Binary file not shown.
Binary file removed natives/linux/liblwjgl64.so
Binary file not shown.
Binary file removed natives/linux/libopenal.so
Binary file not shown.
Binary file removed natives/linux/libopenal64.so
Binary file not shown.
Binary file removed natives/macosx/libjinput-osx.dylib
Binary file not shown.
Binary file removed natives/macosx/liblwjgl.dylib
Binary file not shown.
Binary file removed natives/macosx/openal.dylib
Binary file not shown.
Binary file removed natives/solaris/liblwjgl.so
Binary file not shown.
Binary file removed natives/solaris/liblwjgl64.so
Binary file not shown.
Binary file removed natives/solaris/libopenal.so
Binary file not shown.
Binary file removed natives/solaris/libopenal64.so
Binary file not shown.
Binary file removed natives/windows/OpenAL32.dll
Binary file not shown.
Binary file removed natives/windows/OpenAL64.dll
Binary file not shown.
Binary file removed natives/windows/jinput-dx8.dll
Binary file not shown.
Binary file removed natives/windows/jinput-dx8_64.dll
Binary file not shown.
Binary file removed natives/windows/jinput-raw.dll
Binary file not shown.
Binary file removed natives/windows/jinput-raw_64.dll
Binary file not shown.
Binary file removed natives/windows/lwjgl.dll
Binary file not shown.
Binary file removed natives/windows/lwjgl64.dll
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@
import javax.swing.UIManager;

import com.jtattoo.plaf.fast.FastLookAndFeel;
import com.mrcrayfish.modelcreator.util.SharedLibraryLoader;

public class Start
{
public static void main(String[] args)
{
SharedLibraryLoader.load(false);

Double version = Double.parseDouble(System.getProperty("java.specification.version"));
if (version < 1.8)
{
Expand All @@ -19,7 +22,6 @@ public static void main(String[] args)
}

System.setProperty("org.lwjgl.util.Debug", "true");
//System.setProperty("org.lwjgl.librarypath", new File("natives/windows").getAbsolutePath());

try
{
Expand Down
Loading