aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/config
diff options
context:
space:
mode:
authorUnknown <shekwancheung0528@gmail.com>2019-01-01 13:37:19 +0800
committerUnknown <shekwancheung0528@gmail.com>2019-01-01 13:37:19 +0800
commit430ff25e1bbfce2fe90e69044439cc3ea179dbf1 (patch)
tree5b5a186dd65552bdd5a38d0f4fa7505660064d02 /src/main/java/me/shedaniel/config
parent620d77c53f37c2e96720e29b76346c5aa6b1ec0d (diff)
downloadRoughlyEnoughItems-430ff25e1bbfce2fe90e69044439cc3ea179dbf1.tar.gz
RoughlyEnoughItems-430ff25e1bbfce2fe90e69044439cc3ea179dbf1.tar.bz2
RoughlyEnoughItems-430ff25e1bbfce2fe90e69044439cc3ea179dbf1.zip
Config Draft
Diffstat (limited to 'src/main/java/me/shedaniel/config')
-rw-r--r--src/main/java/me/shedaniel/config/REIConfig.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/main/java/me/shedaniel/config/REIConfig.java b/src/main/java/me/shedaniel/config/REIConfig.java
new file mode 100644
index 000000000..4acaa102a
--- /dev/null
+++ b/src/main/java/me/shedaniel/config/REIConfig.java
@@ -0,0 +1,16 @@
+package me.shedaniel.config;
+
+import com.google.gson.Gson;
+import com.google.gson.GsonBuilder;
+
+import java.awt.event.KeyEvent;
+
+public class REIConfig {
+
+ public static Gson GSON = new GsonBuilder().setPrettyPrinting().create();
+
+ public int recipeKeyBind = KeyEvent.VK_R;
+ public int usageKeyBind = KeyEvent.VK_U;
+ public int hideKeyBind = KeyEvent.VK_O;
+
+}