Core.cs 520 B

123456789101112131415161718
  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 bool settingUseDialog;
  13. internal static GadgetLogger logger;
  14. }
  15. }