| 123456789101112131415161718192021222324 |
- using GadgetCore;
- using GadgetCore.API;
- using RecipeMenuCore.API;
- using System.Collections.Generic;
- namespace RecipeMenuCore
- {
- internal static class Core
- {
- internal static List<RecipePage> pageGearForgeInfoList = new List<RecipePage>();
- internal static List<RecipePage> pageAlchemyStationInfoList = new List<RecipePage>();
- internal static List<RecipePage> pageUltimateForgeInfoList = new List<RecipePage>();
- internal static List<RecipePage> pageUniversalCrafterInfoList = new List<RecipePage>();
- internal static Dictionary<string, List<RecipePage>> pageCustomCrafterInfoLists = new Dictionary<string, List<RecipePage>>();
- internal static RecipePage[] pageGearForgeInfoListVanilla = new RecipePage[6];
- internal static RecipePage[] pageAlchemyStationInfoListVanilla = new RecipePage[2];
- internal static RecipePage[] pageUltimateForgeInfoListVanilla = new RecipePage[6];
- internal static bool settingUseDialog;
- internal static GadgetLogger logger;
- }
- }
|