Core.cs 1001 B

123456789101112131415161718192021222324
  1. using GadgetCore;
  2. using GadgetCore.API;
  3. using RecipeMenuCore.API;
  4. using System.Collections.Generic;
  5. namespace RecipeMenuCore
  6. {
  7. internal static class Core
  8. {
  9. internal static List<RecipePage> pageGearForgeInfoList = new List<RecipePage>();
  10. internal static List<RecipePage> pageAlchemyStationInfoList = new List<RecipePage>();
  11. internal static List<RecipePage> pageUltimateForgeInfoList = new List<RecipePage>();
  12. internal static List<RecipePage> pageUniversalCrafterInfoList = new List<RecipePage>();
  13. internal static Dictionary<string, List<RecipePage>> pageCustomCrafterInfoLists = new Dictionary<string, List<RecipePage>>();
  14. internal static RecipePage[] pageGearForgeInfoListVanilla = new RecipePage[6];
  15. internal static RecipePage[] pageAlchemyStationInfoListVanilla = new RecipePage[2];
  16. internal static RecipePage[] pageUltimateForgeInfoListVanilla = new RecipePage[6];
  17. internal static bool settingUseDialog;
  18. internal static GadgetLogger logger;
  19. }
  20. }