changed placeholder files to markdown files
parent
3a048f08ad
commit
a3215d7ca8
|
@ -0,0 +1,4 @@
|
|||
# Development tools
|
||||
|
||||
__fake_java.py__ can be used to get the command used to start Minecraft. When run, it will create a file called `fake_java_out.txt` in its working directory.
|
||||
__rmpyc__ removes all `.pyc` files in the current working directory and all subdirectories.
|
|
@ -0,0 +1,7 @@
|
|||
# lib/jar
|
||||
|
||||
This directory will contain all libraries Minecraft relies on.
|
||||
As Minecraft itself is specified as a library for Forge on the command line, its version jar goes here as well.
|
||||
|
||||
Unfortunately, I cannot put them here for convenience due to copyright laws.
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
# libs/launcher/java/runtime
|
||||
I intend to package a java runtime with the launcher as it helps to prevent some issues. For instance, Minecraft runs only on Java 8 and below. If the default JRE on the operating system’s path is not Java 8, Minecraft will not even launch sucessfully.
|
|
@ -0,0 +1,5 @@
|
|||
# lib/launcher/python
|
||||
|
||||
__gui.py__ will contain the GUI (Wow! Really?). The GUI will be accessed by `main.py`.
|
||||
__mchandler.py__ will be the launcher library. This time, it will not be a runnable hybrid library.
|
||||
__updater.py__ will be used for updating the mod pack and possibly the launcher as well.
|
|
@ -0,0 +1 @@
|
|||
I intend to ship the launcher with a Python runtime included because not all of the Windowze noobs out there will want to install Python themselves.
|
|
@ -0,0 +1,2 @@
|
|||
# lib/natives
|
||||
This directory will contain the natives used by Minecraft.
|
Reference in New Issue