Compare commits
3 Commits
635afd815e
...
b682373cbf
Author | SHA1 | Date |
---|---|---|
BodgeMaster | b682373cbf | |
BodgeMaster | fc049a4ad6 | |
BodgeMaster | 3282303754 |
|
@ -0,0 +1,7 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<classpath>
|
||||||
|
<classpathentry kind="src" path="src"/>
|
||||||
|
<classpathentry kind="src" path="lib"/>
|
||||||
|
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||||
|
<classpathentry kind="output" path="bin"/>
|
||||||
|
</classpath>
|
|
@ -7,3 +7,5 @@ res/log_configs/
|
||||||
lib/jar/*.jar
|
lib/jar/*.jar
|
||||||
lib/natives/*.so
|
lib/natives/*.so
|
||||||
**/*.pyc
|
**/*.pyc
|
||||||
|
/bin/
|
||||||
|
/.metadata/
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<projectDescription>
|
||||||
|
<name>ThatMinecraftLauncher</name>
|
||||||
|
<comment></comment>
|
||||||
|
<projects>
|
||||||
|
</projects>
|
||||||
|
<buildSpec>
|
||||||
|
<buildCommand>
|
||||||
|
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||||
|
<arguments>
|
||||||
|
</arguments>
|
||||||
|
</buildCommand>
|
||||||
|
</buildSpec>
|
||||||
|
<natures>
|
||||||
|
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||||
|
</natures>
|
||||||
|
</projectDescription>
|
|
@ -0,0 +1,7 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<classpath>
|
||||||
|
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
|
||||||
|
<classpathentry kind="src" path="src"/>
|
||||||
|
<classpathentry kind="src" path="lib"/>
|
||||||
|
<classpathentry kind="output" path="bin"/>
|
||||||
|
</classpath>
|
|
@ -0,0 +1 @@
|
||||||
|
/bin/
|
|
@ -0,0 +1,17 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<projectDescription>
|
||||||
|
<name>Launcher</name>
|
||||||
|
<comment></comment>
|
||||||
|
<projects>
|
||||||
|
</projects>
|
||||||
|
<buildSpec>
|
||||||
|
<buildCommand>
|
||||||
|
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||||
|
<arguments>
|
||||||
|
</arguments>
|
||||||
|
</buildCommand>
|
||||||
|
</buildSpec>
|
||||||
|
<natures>
|
||||||
|
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||||
|
</natures>
|
||||||
|
</projectDescription>
|
|
@ -0,0 +1,11 @@
|
||||||
|
eclipse.preferences.version=1
|
||||||
|
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||||
|
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
|
||||||
|
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||||
|
org.eclipse.jdt.core.compiler.compliance=1.8
|
||||||
|
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||||
|
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||||
|
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||||
|
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
|
||||||
|
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
|
||||||
|
org.eclipse.jdt.core.compiler.source=1.8
|
|
@ -0,0 +1,8 @@
|
||||||
|
# Launcher
|
||||||
|
This directory contains all files of the eclipse project
|
||||||
|
## Directories
|
||||||
|
* __bin__ builds (eclipse)
|
||||||
|
* __lib__ libraries for the launcher
|
||||||
|
* __res__ the Minecraft `assets` folder
|
||||||
|
* __run__ the Minecraft game directory
|
||||||
|
* __src__ the launcher itself
|
|
@ -9,9 +9,7 @@ The Launcher for my mod pack
|
||||||
Documentation for each individual file can be found in the same directory
|
Documentation for each individual file can be found in the same directory
|
||||||
## Directories
|
## Directories
|
||||||
* __devtools__ contains custom development tools
|
* __devtools__ contains custom development tools
|
||||||
* __lib__ contains libraries for Minecraft and the launcher
|
* __Launcher__ contains the eclipse project
|
||||||
* __res__ contains the resources/assets used by Minecraft
|
|
||||||
* __run__ contains the running directory / game directory
|
|
||||||
## Files
|
## Files
|
||||||
|
|
||||||
# Per-File TODO list
|
# Per-File TODO list
|
||||||
|
|
Reference in New Issue