blob: 2f4060a9f54d95c500097310daca33a236e8dcb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package me.shedaniel.rei.client;
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 REIItemListOrdering itemListOrdering = REIItemListOrdering.REGISTRY;
public boolean isAscending = true;
public boolean enableCraftableOnlyButton = true;
}
|