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; }