Core.cs 779 B

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