Core.cs 468 B

12345678910111213141516
  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. public static List<RecipePage> pageGearForgeInfoList = new List<RecipePage>();
  10. public static List<RecipePage> pageAlchemyStationInfoList = new List<RecipePage>();
  11. public static List<RecipePage> pageUltimateForgeInfoList = new List<RecipePage>();
  12. public static GadgetLogger logger;
  13. }
  14. }