blob: 06dfbfc8d540f7420757e0291163803398c696e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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;
}
|