Core.cs 340 B

12345678910111213141516
  1. using GadgetCore;
  2. using GadgetCore.API;
  3. namespace AncientReassembler
  4. {
  5. internal static class Core
  6. {
  7. public static int itemAncientReassemblerId = -1;
  8. public static int npcID = -1;
  9. public static MenuInfo menu = null;
  10. public static ItemStore itemStore = new ItemStore(3);
  11. public static GadgetLogger logger;
  12. }
  13. }