From ba5e81267e7a797d5f33e7ec5670927c0d2f6917 Mon Sep 17 00:00:00 2001 From: LordMZTE Date: Thu, 30 Apr 2020 21:13:17 +0200 Subject: [PATCH] add readme and some packages --- README.md | 2 ++ src/main/java/ley/anvil/modpacktools/util/Config.java | 7 +++++++ src/main/resources/modpacktoolsconfig.json | 3 +++ 3 files changed, 12 insertions(+) create mode 100644 README.md create mode 100644 src/main/java/ley/anvil/modpacktools/util/Config.java create mode 100644 src/main/resources/modpacktoolsconfig.json diff --git a/README.md b/README.md new file mode 100644 index 0000000..a133fb5 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# modpacktools +This is a WIP java app to help modpack makers by creating Twitch exports, mod lists and downloading the mods \ No newline at end of file diff --git a/src/main/java/ley/anvil/modpacktools/util/Config.java b/src/main/java/ley/anvil/modpacktools/util/Config.java new file mode 100644 index 0000000..e6c1590 --- /dev/null +++ b/src/main/java/ley/anvil/modpacktools/util/Config.java @@ -0,0 +1,7 @@ +package ley.anvil.modpacktools.util; + +public class Config { + Config() { + //TODO this should copy the modpacktoolsconfig.json file from resources to the jar file's dir it it doesnt exist and load it otherwise + } +} diff --git a/src/main/resources/modpacktoolsconfig.json b/src/main/resources/modpacktoolsconfig.json new file mode 100644 index 0000000..0e0dcd2 --- /dev/null +++ b/src/main/resources/modpacktoolsconfig.json @@ -0,0 +1,3 @@ +{ + +} \ No newline at end of file