REIConfig.java 428 B

1234567891011121314151617
  1. package me.shedaniel.config;
  2. import com.google.gson.Gson;
  3. import com.google.gson.GsonBuilder;
  4. import java.awt.event.KeyEvent;
  5. public class REIConfig {
  6. public static Gson GSON = new GsonBuilder().setPrettyPrinting().create();
  7. public int recipeKeyBind = KeyEvent.VK_R;
  8. public int usageKeyBind = KeyEvent.VK_U;
  9. public int hideKeyBind = KeyEvent.VK_O;
  10. public boolean centreSearchBox = false;
  11. }