blob: 9e6b3d36f3c03f5ee9cdf88213f6df8b86307fd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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;
}
|