Core.cs 871 B

1234567891011121314151617181920212223
  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 RecipePage[] pageGearForgeInfoListVanilla = new RecipePage[6];
  14. internal static RecipePage[] pageAlchemyStationInfoListVanilla = new RecipePage[2];
  15. internal static RecipePage[] pageUltimateForgeInfoListVanilla = new RecipePage[6];
  16. internal static bool settingUseDialog;
  17. internal static GadgetLogger logger;
  18. }
  19. }