changed placeholder files to markdown files

backup
LinuxMint4Ever 2019-10-06 20:33:01 +02:00
parent 3a048f08ad
commit a3215d7ca8
9 changed files with 21 additions and 0 deletions

4
devtools/README.md Normal file
View File

@ -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.

7
lib/jar/README.md Normal file
View File

@ -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.

View File

View File

@ -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 systems path is not Java 8, Minecraft will not even launch sucessfully.

View File

@ -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.

View File

@ -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.

2
lib/natives/README.md Normal file
View File

@ -0,0 +1,2 @@
# lib/natives
This directory will contain the natives used by Minecraft.