aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/config/REIConfig.java
diff options
context:
space:
mode:
authorUnknown <shekwancheung0528@gmail.com>2019-01-09 23:35:45 +0800
committerUnknown <shekwancheung0528@gmail.com>2019-01-09 23:35:45 +0800
commit1b21d26487636e50d03979acd5ca4a2a07761a25 (patch)
treed7d066b4e7491474f3a962593e97a2d6f0aa2ea2 /src/main/java/me/shedaniel/config/REIConfig.java
parent77af6b3f548d34bfdafc585847d3d80ec783c7e7 (diff)
downloadRoughlyEnoughItems-1b21d26487636e50d03979acd5ca4a2a07761a25.tar.gz
RoughlyEnoughItems-1b21d26487636e50d03979acd5ca4a2a07761a25.tar.bz2
RoughlyEnoughItems-1b21d26487636e50d03979acd5ca4a2a07761a25.zip
Starting off rewrite
Diffstat (limited to 'src/main/java/me/shedaniel/config/REIConfig.java')
-rw-r--r--src/main/java/me/shedaniel/config/REIConfig.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/main/java/me/shedaniel/config/REIConfig.java b/src/main/java/me/shedaniel/config/REIConfig.java
deleted file mode 100644
index 06dfbfc8d..000000000
--- a/src/main/java/me/shedaniel/config/REIConfig.java
+++ /dev/null
@@ -1,22 +0,0 @@
-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;
- public boolean centreSearchBox = false;
- public REIItemListOrdering itemListOrdering = REIItemListOrdering.REGISTRY;
- public boolean isAscending = true;
- public boolean enableCraftableOnlyButton = true;
-
-}