aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/me/shedaniel/config/REIConfig.java
blob: 4acaa102a0d8c6c754f746a91647c65f1d0b1bbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
    
}