From 2df58aeacbf1177ec01167bdeccfe89d6a8d5804 Mon Sep 17 00:00:00 2001
From: client_Wu Xijin <364452445@qq.com>
Date: 星期三, 13 二月 2019 14:20:28 +0800
Subject: [PATCH] 3335 配置表读取重构,修改配置表读取接口1
---
Lua/LuaConfigUtility.cs | 360 ++++++++++++++++++++++++++++++------------------------------
1 files changed, 180 insertions(+), 180 deletions(-)
diff --git a/Lua/LuaConfigUtility.cs b/Lua/LuaConfigUtility.cs
index 02857ea..04d7c22 100644
--- a/Lua/LuaConfigUtility.cs
+++ b/Lua/LuaConfigUtility.cs
@@ -6,902 +6,902 @@
//杩欓噷鎻掑叆閰嶇疆琛ㄨ幏鍙栨柟娉�
public static CrossServerArenaConfig GetCrossServerArena(string _key)
{
- return Config.Instance.Get<CrossServerArenaConfig>(_key);
+ return CrossServerArenaConfig.Get(_key);
}
public static FuncSwitchConfig GetFuncSwitch(string _key)
{
- return Config.Instance.Get<FuncSwitchConfig>(_key);
+ return FuncSwitchConfig.Get(_key);
}
public static GatherSoulConfig GetGatherSoul(string _key)
{
- return Config.Instance.Get<GatherSoulConfig>(_key);
+ return GatherSoulConfig.Get(_key);
}
public static GatherSoulComposeConfig GetGatherSoulCompose(string _key)
{
- return Config.Instance.Get<GatherSoulComposeConfig>(_key);
+ return GatherSoulComposeConfig.Get(_key);
}
public static DungeonHelpBattleConfig GetDungeonHelpBattle(string _key)
{
- return Config.Instance.Get<DungeonHelpBattleConfig>(_key);
+ return DungeonHelpBattleConfig.Get(_key);
}
public static GatherSoulPropertyConfig GetGatherSoulProperty(string _key)
{
- return Config.Instance.Get<GatherSoulPropertyConfig>(_key);
+ return GatherSoulPropertyConfig.Get(_key);
}
public static KingTreasureItemConfig GetKingTreasureItem(string _key)
{
- return Config.Instance.Get<KingTreasureItemConfig>(_key);
+ return KingTreasureItemConfig.Get(_key);
}
public static KingTreasureConfig GetKingTreasure(string _key)
{
- return Config.Instance.Get<KingTreasureConfig>(_key);
+ return KingTreasureConfig.Get(_key);
}
public static AncientRobotNameConfig GetAncientRobotName(string _key)
{
- return Config.Instance.Get<AncientRobotNameConfig>(_key);
+ return AncientRobotNameConfig.Get(_key);
}
public static ChatBubbleBoxConfig GetChatBubbleBox(string _key)
{
- return Config.Instance.Get<ChatBubbleBoxConfig>(_key);
+ return ChatBubbleBoxConfig.Get(_key);
}
public static IceLodeStarAwardConfig GetIceLodeStarAward(string _key)
{
- return Config.Instance.Get<IceLodeStarAwardConfig>(_key);
+ return IceLodeStarAwardConfig.Get(_key);
}
public static MarketQueryConfig GetMarketQuery(string _key)
{
- return Config.Instance.Get<MarketQueryConfig>(_key);
+ return MarketQueryConfig.Get(_key);
}
public static GodWeaponEffectConfig GetGodWeaponEffect(string _key)
{
- return Config.Instance.Get<GodWeaponEffectConfig>(_key);
+ return GodWeaponEffectConfig.Get(_key);
}
public static GuardConfig GetGuard(string _key)
{
- return Config.Instance.Get<GuardConfig>(_key);
+ return GuardConfig.Get(_key);
}
public static HelpInfoConfig GetHelpInfo(string _key)
{
- return Config.Instance.Get<HelpInfoConfig>(_key);
+ return HelpInfoConfig.Get(_key);
}
public static PriorLanguageConfig GetPriorLanguage(string _key)
{
- return Config.Instance.Get<PriorLanguageConfig>(_key);
+ return PriorLanguageConfig.Get(_key);
}
public static PriorBundleConfig GetPriorBundle(string _key)
{
- return Config.Instance.Get<PriorBundleConfig>(_key);
+ return PriorBundleConfig.Get(_key);
}
public static LoadingBackGroundConfig GetLoadingBackGround(string _key)
{
- return Config.Instance.Get<LoadingBackGroundConfig>(_key);
+ return LoadingBackGroundConfig.Get(_key);
}
public static ContactConfig GetContact(string _key)
{
- return Config.Instance.Get<ContactConfig>(_key);
+ return ContactConfig.Get(_key);
}
public static TreasureDungeonConfig GetTreasureDungeon(string _key)
{
- return Config.Instance.Get<TreasureDungeonConfig>(_key);
+ return TreasureDungeonConfig.Get(_key);
}
public static TaskPowerConfig GetTaskPower(string _key)
{
- return Config.Instance.Get<TaskPowerConfig>(_key);
+ return TaskPowerConfig.Get(_key);
}
public static ApkUpdateUrlConfig GetApkUpdateUrl(string _key)
{
- return Config.Instance.Get<ApkUpdateUrlConfig>(_key);
+ return ApkUpdateUrlConfig.Get(_key);
}
public static SkillConfig GetSkill(string _key)
{
- return Config.Instance.Get<SkillConfig>(_key);
+ return SkillConfig.Get(_key);
}
public static SignInConfig GetSignIn(string _key)
{
- return Config.Instance.Get<SignInConfig>(_key);
+ return SignInConfig.Get(_key);
}
public static SceneShadowConfig GetSceneShadow(string _key)
{
- return Config.Instance.Get<SceneShadowConfig>(_key);
+ return SceneShadowConfig.Get(_key);
}
public static RuneTowerFloorConfig GetRuneTowerFloor(string _key)
{
- return Config.Instance.Get<RuneTowerFloorConfig>(_key);
+ return RuneTowerFloorConfig.Get(_key);
}
public static RuneTowerConfig GetRuneTower(string _key)
{
- return Config.Instance.Get<RuneTowerConfig>(_key);
+ return RuneTowerConfig.Get(_key);
}
public static RuneComposeConfig GetRuneCompose(string _key)
{
- return Config.Instance.Get<RuneComposeConfig>(_key);
+ return RuneComposeConfig.Get(_key);
}
public static RuneConfig GetRune(string _key)
{
- return Config.Instance.Get<RuneConfig>(_key);
+ return RuneConfig.Get(_key);
}
public static RuleConfig GetRule(string _key)
{
- return Config.Instance.Get<RuleConfig>(_key);
+ return RuleConfig.Get(_key);
}
public static RoleStrongerConfig GetRoleStronger(string _key)
{
- return Config.Instance.Get<RoleStrongerConfig>(_key);
+ return RoleStrongerConfig.Get(_key);
}
public static RoleResourceConfig GetRoleResource(string _key)
{
- return Config.Instance.Get<RoleResourceConfig>(_key);
+ return RoleResourceConfig.Get(_key);
}
public static RoleEquipStarsConfig GetRoleEquipStars(string _key)
{
- return Config.Instance.Get<RoleEquipStarsConfig>(_key);
+ return RoleEquipStarsConfig.Get(_key);
}
public static RichTextMsgReplaceConfig GetRichTextMsgReplace(string _key)
{
- return Config.Instance.Get<RichTextMsgReplaceConfig>(_key);
+ return RichTextMsgReplaceConfig.Get(_key);
}
public static ResourcesBackConfig GetResourcesBack(string _key)
{
- return Config.Instance.Get<ResourcesBackConfig>(_key);
+ return ResourcesBackConfig.Get(_key);
}
public static RefineStoveConfig GetRefineStove(string _key)
{
- return Config.Instance.Get<RefineStoveConfig>(_key);
+ return RefineStoveConfig.Get(_key);
}
public static RedPackConfig GetRedPack(string _key)
{
- return Config.Instance.Get<RedPackConfig>(_key);
+ return RedPackConfig.Get(_key);
}
public static RealmPracticeConfig GetRealmPractice(string _key)
{
- return Config.Instance.Get<RealmPracticeConfig>(_key);
+ return RealmPracticeConfig.Get(_key);
}
public static RealmConfig GetRealm(string _key)
{
- return Config.Instance.Get<RealmConfig>(_key);
+ return RealmConfig.Get(_key);
}
public static RankListConfig GetRankList(string _key)
{
- return Config.Instance.Get<RankListConfig>(_key);
+ return RankListConfig.Get(_key);
}
public static RandomNameConfig GetRandomName(string _key)
{
- return Config.Instance.Get<RandomNameConfig>(_key);
+ return RandomNameConfig.Get(_key);
}
public static QuestionBankConfig GetQuestionBank(string _key)
{
- return Config.Instance.Get<QuestionBankConfig>(_key);
+ return QuestionBankConfig.Get(_key);
}
public static PyTaskConfig GetPyTask(string _key)
{
- return Config.Instance.Get<PyTaskConfig>(_key);
+ return PyTaskConfig.Get(_key);
}
public static PlayerPropertyConfig GetPlayerProperty(string _key)
{
- return Config.Instance.Get<PlayerPropertyConfig>(_key);
+ return PlayerPropertyConfig.Get(_key);
}
public static PlayerLVConfig GetPlayerLV(string _key)
{
- return Config.Instance.Get<PlayerLVConfig>(_key);
+ return PlayerLVConfig.Get(_key);
}
public static PetInfoConfig GetPetInfo(string _key)
{
- return Config.Instance.Get<PetInfoConfig>(_key);
+ return PetInfoConfig.Get(_key);
}
public static PetEatEquipConfig GetPetEatEquip(string _key)
{
- return Config.Instance.Get<PetEatEquipConfig>(_key);
+ return PetEatEquipConfig.Get(_key);
}
public static PetClassCostConfig GetPetClassCost(string _key)
{
- return Config.Instance.Get<PetClassCostConfig>(_key);
+ return PetClassCostConfig.Get(_key);
}
public static PersonalBossConfig GetPersonalBoss(string _key)
{
- return Config.Instance.Get<PersonalBossConfig>(_key);
+ return PersonalBossConfig.Get(_key);
}
public static OSRedAchieveConfig GetOSRedAchieve(string _key)
{
- return Config.Instance.Get<OSRedAchieveConfig>(_key);
+ return OSRedAchieveConfig.Get(_key);
}
public static OSCBillTagAwardConfig GetOSCBillTagAward(string _key)
{
- return Config.Instance.Get<OSCBillTagAwardConfig>(_key);
+ return OSCBillTagAwardConfig.Get(_key);
}
public static OSCBillRankAwardConfig GetOSCBillRankAward(string _key)
{
- return Config.Instance.Get<OSCBillRankAwardConfig>(_key);
+ return OSCBillRankAwardConfig.Get(_key);
}
public static OrderInfoConfig GetOrderInfo(string _key)
{
- return Config.Instance.Get<OrderInfoConfig>(_key);
+ return OrderInfoConfig.Get(_key);
}
public static OnlineAwardConfig GetOnlineAward(string _key)
{
- return Config.Instance.Get<OnlineAwardConfig>(_key);
+ return OnlineAwardConfig.Get(_key);
}
public static OccupationNameConfig GetOccupationName(string _key)
{
- return Config.Instance.Get<OccupationNameConfig>(_key);
+ return OccupationNameConfig.Get(_key);
}
public static NPCDropItemConfig GetNPCDropItem(string _key)
{
- return Config.Instance.Get<NPCDropItemConfig>(_key);
+ return NPCDropItemConfig.Get(_key);
}
public static NPCDialogueConfig GetNPCDialogue(string _key)
{
- return Config.Instance.Get<NPCDialogueConfig>(_key);
+ return NPCDialogueConfig.Get(_key);
}
public static NPCConfig GetNPC(string _key)
{
- return Config.Instance.Get<NPCConfig>(_key);
+ return NPCConfig.Get(_key);
}
public static MonsterRefreshPointConfig GetMonsterRefreshPoint(string _key)
{
- return Config.Instance.Get<MonsterRefreshPointConfig>(_key);
+ return MonsterRefreshPointConfig.Get(_key);
}
public static MonsterNameColorConfig GetMonsterNameColor(string _key)
{
- return Config.Instance.Get<MonsterNameColorConfig>(_key);
+ return MonsterNameColorConfig.Get(_key);
}
public static ModelResConfig GetModelRes(string _key)
{
- return Config.Instance.Get<ModelResConfig>(_key);
+ return ModelResConfig.Get(_key);
}
public static MarketConfig GetMarket(string _key)
{
- return Config.Instance.Get<MarketConfig>(_key);
+ return MarketConfig.Get(_key);
}
public static MapUiControlConfig GetMapUiControl(string _key)
{
- return Config.Instance.Get<MapUiControlConfig>(_key);
+ return MapUiControlConfig.Get(_key);
}
public static maptransportConfig Getmaptransport(string _key)
{
- return Config.Instance.Get<maptransportConfig>(_key);
+ return maptransportConfig.Get(_key);
}
public static MapResourcesConfig GetMapResources(string _key)
{
- return Config.Instance.Get<MapResourcesConfig>(_key);
+ return MapResourcesConfig.Get(_key);
}
public static DamageNumConfig GetDamageNum(string _key)
{
- return Config.Instance.Get<DamageNumConfig>(_key);
+ return DamageNumConfig.Get(_key);
}
public static DailyQuestSpecialOpenTimeConfig GetDailyQuestSpecialOpenTime(string _key)
{
- return Config.Instance.Get<DailyQuestSpecialOpenTimeConfig>(_key);
+ return DailyQuestSpecialOpenTimeConfig.Get(_key);
}
public static DailyQuestOpenTimeConfig GetDailyQuestOpenTime(string _key)
{
- return Config.Instance.Get<DailyQuestOpenTimeConfig>(_key);
+ return DailyQuestOpenTimeConfig.Get(_key);
}
public static DailyQuestConfig GetDailyQuest(string _key)
{
- return Config.Instance.Get<DailyQuestConfig>(_key);
+ return DailyQuestConfig.Get(_key);
}
public static DailyLivenessRewardConfig GetDailyLivenessReward(string _key)
{
- return Config.Instance.Get<DailyLivenessRewardConfig>(_key);
+ return DailyLivenessRewardConfig.Get(_key);
}
public static CTGConfig GetCTG(string _key)
{
- return Config.Instance.Get<CTGConfig>(_key);
+ return CTGConfig.Get(_key);
}
public static CreateRoleConfig GetCreateRole(string _key)
{
- return Config.Instance.Get<CreateRoleConfig>(_key);
+ return CreateRoleConfig.Get(_key);
}
public static ContinueSignInConfig GetContinueSignIn(string _key)
{
- return Config.Instance.Get<ContinueSignInConfig>(_key);
+ return ContinueSignInConfig.Get(_key);
}
public static ChestsAwardConfig GetChestsAward(string _key)
{
- return Config.Instance.Get<ChestsAwardConfig>(_key);
+ return ChestsAwardConfig.Get(_key);
}
public static ChestsConfig GetChests(string _key)
{
- return Config.Instance.Get<ChestsConfig>(_key);
+ return ChestsConfig.Get(_key);
}
public static bossSkillTipsConfig GetbossSkillTips(string _key)
{
- return Config.Instance.Get<bossSkillTipsConfig>(_key);
+ return bossSkillTipsConfig.Get(_key);
}
public static HorseConfig GetHorse(string _key)
{
- return Config.Instance.Get<HorseConfig>(_key);
+ return HorseConfig.Get(_key);
}
public static GuideConfig GetGuide(string _key)
{
- return Config.Instance.Get<GuideConfig>(_key);
+ return GuideConfig.Get(_key);
}
public static GodWeaponConfig GetGodWeapon(string _key)
{
- return Config.Instance.Get<GodWeaponConfig>(_key);
+ return GodWeaponConfig.Get(_key);
}
public static GmCmdConfig GetGmCmd(string _key)
{
- return Config.Instance.Get<GmCmdConfig>(_key);
+ return GmCmdConfig.Get(_key);
}
public static GetItemWaysConfig GetGetItemWays(string _key)
{
- return Config.Instance.Get<GetItemWaysConfig>(_key);
+ return GetItemWaysConfig.Get(_key);
}
public static FunctionForecastConfig GetFunctionForecast(string _key)
{
- return Config.Instance.Get<FunctionForecastConfig>(_key);
+ return FunctionForecastConfig.Get(_key);
}
public static FuncOpenLVConfig GetFuncOpenLV(string _key)
{
- return Config.Instance.Get<FuncOpenLVConfig>(_key);
+ return FuncOpenLVConfig.Get(_key);
}
public static FuncConfigConfig GetFuncConfig(string _key)
{
- return Config.Instance.Get<FuncConfigConfig>(_key);
+ return FuncConfigConfig.Get(_key);
}
public static FreeGoodsConfig GetFreeGoods(string _key)
{
- return Config.Instance.Get<FreeGoodsConfig>(_key);
+ return FreeGoodsConfig.Get(_key);
}
public static FightPowerParamConfig GetFightPowerParam(string _key)
{
- return Config.Instance.Get<FightPowerParamConfig>(_key);
+ return FightPowerParamConfig.Get(_key);
}
public static FamilyTechConfig GetFamilyTech(string _key)
{
- return Config.Instance.Get<FamilyTechConfig>(_key);
+ return FamilyTechConfig.Get(_key);
}
public static FamilyConfig GetFamily(string _key)
{
- return Config.Instance.Get<FamilyConfig>(_key);
+ return FamilyConfig.Get(_key);
}
public static FairyGrabBossConfig GetFairyGrabBoss(string _key)
{
- return Config.Instance.Get<FairyGrabBossConfig>(_key);
+ return FairyGrabBossConfig.Get(_key);
}
public static FaceConfig GetFace(string _key)
{
- return Config.Instance.Get<FaceConfig>(_key);
+ return FaceConfig.Get(_key);
}
public static EquipWashSpecConfig GetEquipWashSpec(string _key)
{
- return Config.Instance.Get<EquipWashSpecConfig>(_key);
+ return EquipWashSpecConfig.Get(_key);
}
public static BossRebornConfig GetBossReborn(string _key)
{
- return Config.Instance.Get<BossRebornConfig>(_key);
+ return BossRebornConfig.Get(_key);
}
public static BossInfoConfig GetBossInfo(string _key)
{
- return Config.Instance.Get<BossInfoConfig>(_key);
+ return BossInfoConfig.Get(_key);
}
public static AreaCameraConfig GetAreaCamera(string _key)
{
- return Config.Instance.Get<AreaCameraConfig>(_key);
+ return AreaCameraConfig.Get(_key);
}
public static AlchemyConfig GetAlchemy(string _key)
{
- return Config.Instance.Get<AlchemyConfig>(_key);
+ return AlchemyConfig.Get(_key);
}
public static AlchemySpecConfig GetAlchemySpec(string _key)
{
- return Config.Instance.Get<AlchemySpecConfig>(_key);
+ return AlchemySpecConfig.Get(_key);
}
public static XMZZAchievementConfig GetXMZZAchievement(string _key)
{
- return Config.Instance.Get<XMZZAchievementConfig>(_key);
+ return XMZZAchievementConfig.Get(_key);
}
public static XBGetItemConfig GetXBGetItem(string _key)
{
- return Config.Instance.Get<XBGetItemConfig>(_key);
+ return XBGetItemConfig.Get(_key);
}
public static WorldBossConfig GetWorldBoss(string _key)
{
- return Config.Instance.Get<WorldBossConfig>(_key);
+ return WorldBossConfig.Get(_key);
}
public static WingRefineExpConfig GetWingRefineExp(string _key)
{
- return Config.Instance.Get<WingRefineExpConfig>(_key);
+ return WingRefineExpConfig.Get(_key);
}
public static WingRefineAttrConfig GetWingRefineAttr(string _key)
{
- return Config.Instance.Get<WingRefineAttrConfig>(_key);
+ return WingRefineAttrConfig.Get(_key);
}
public static WindowSearchConfig GetWindowSearch(string _key)
{
- return Config.Instance.Get<WindowSearchConfig>(_key);
+ return WindowSearchConfig.Get(_key);
}
public static WHYJRewardConfig GetWHYJReward(string _key)
{
- return Config.Instance.Get<WHYJRewardConfig>(_key);
+ return WHYJRewardConfig.Get(_key);
}
public static WeatherConfig GetWeather(string _key)
{
- return Config.Instance.Get<WeatherConfig>(_key);
+ return WeatherConfig.Get(_key);
}
public static VipPrivilegeConfig GetVipPrivilege(string _key)
{
- return Config.Instance.Get<VipPrivilegeConfig>(_key);
+ return VipPrivilegeConfig.Get(_key);
}
public static VIPKillNPCConfig GetVIPKillNPC(string _key)
{
- return Config.Instance.Get<VIPKillNPCConfig>(_key);
+ return VIPKillNPCConfig.Get(_key);
}
public static VIPAwardConfig GetVIPAward(string _key)
{
- return Config.Instance.Get<VIPAwardConfig>(_key);
+ return VIPAwardConfig.Get(_key);
}
public static ViewRoleFuncConfig GetViewRoleFunc(string _key)
{
- return Config.Instance.Get<ViewRoleFuncConfig>(_key);
+ return ViewRoleFuncConfig.Get(_key);
}
public static UniquenessArriveConfig GetUniquenessArrive(string _key)
{
- return Config.Instance.Get<UniquenessArriveConfig>(_key);
+ return UniquenessArriveConfig.Get(_key);
}
public static UnionLivenConfig GetUnionLiven(string _key)
{
- return Config.Instance.Get<UnionLivenConfig>(_key);
+ return UnionLivenConfig.Get(_key);
}
public static TrialRewardsConfig GetTrialRewards(string _key)
{
- return Config.Instance.Get<TrialRewardsConfig>(_key);
+ return TrialRewardsConfig.Get(_key);
}
public static TrialExchangeConfig GetTrialExchange(string _key)
{
- return Config.Instance.Get<TrialExchangeConfig>(_key);
+ return TrialExchangeConfig.Get(_key);
}
public static TreasureUpConfig GetTreasureUp(string _key)
{
- return Config.Instance.Get<TreasureUpConfig>(_key);
+ return TreasureUpConfig.Get(_key);
}
public static TreasureSkillConfig GetTreasureSkill(string _key)
{
- return Config.Instance.Get<TreasureSkillConfig>(_key);
+ return TreasureSkillConfig.Get(_key);
}
public static TreasureRefineConfig GetTreasureRefine(string _key)
{
- return Config.Instance.Get<TreasureRefineConfig>(_key);
+ return TreasureRefineConfig.Get(_key);
}
public static TreasurePrivilegeConfig GetTreasurePrivilege(string _key)
{
- return Config.Instance.Get<TreasurePrivilegeConfig>(_key);
+ return TreasurePrivilegeConfig.Get(_key);
}
public static TreasureFindHostConfig GetTreasureFindHost(string _key)
{
- return Config.Instance.Get<TreasureFindHostConfig>(_key);
+ return TreasureFindHostConfig.Get(_key);
}
public static TreasureConfig GetTreasure(string _key)
{
- return Config.Instance.Get<TreasureConfig>(_key);
+ return TreasureConfig.Get(_key);
}
public static TeamTargetConfig GetTeamTarget(string _key)
{
- return Config.Instance.Get<TeamTargetConfig>(_key);
+ return TeamTargetConfig.Get(_key);
}
public static TaskListConfig GetTaskList(string _key)
{
- return Config.Instance.Get<TaskListConfig>(_key);
+ return TaskListConfig.Get(_key);
}
public static TASKINFOConfig GetTASKINFO(string _key)
{
- return Config.Instance.Get<TASKINFOConfig>(_key);
+ return TASKINFOConfig.Get(_key);
}
public static TalentConfig GetTalent(string _key)
{
- return Config.Instance.Get<TalentConfig>(_key);
+ return TalentConfig.Get(_key);
}
public static SysInfoConfig GetSysInfo(string _key)
{
- return Config.Instance.Get<SysInfoConfig>(_key);
+ return SysInfoConfig.Get(_key);
}
public static SuitEffectConfig GetSuitEffect(string _key)
{
- return Config.Instance.Get<SuitEffectConfig>(_key);
+ return SuitEffectConfig.Get(_key);
}
public static SuccessConfig GetSuccess(string _key)
{
- return Config.Instance.Get<SuccessConfig>(_key);
+ return SuccessConfig.Get(_key);
}
public static StoryMissionsConfig GetStoryMissions(string _key)
{
- return Config.Instance.Get<StoryMissionsConfig>(_key);
+ return StoryMissionsConfig.Get(_key);
}
public static StoreConfig GetStore(string _key)
{
- return Config.Instance.Get<StoreConfig>(_key);
+ return StoreConfig.Get(_key);
}
public static AllPeoplePartyConfig GetAllPeopleParty(string _key)
{
- return Config.Instance.Get<AllPeoplePartyConfig>(_key);
+ return AllPeoplePartyConfig.Get(_key);
}
public static AttrFruitConfig GetAttrFruit(string _key)
{
- return Config.Instance.Get<AttrFruitConfig>(_key);
+ return AttrFruitConfig.Get(_key);
}
public static ActorShowConfig GetActorShow(string _key)
{
- return Config.Instance.Get<ActorShowConfig>(_key);
+ return ActorShowConfig.Get(_key);
}
public static BossHomeConfig GetBossHome(string _key)
{
- return Config.Instance.Get<BossHomeConfig>(_key);
+ return BossHomeConfig.Get(_key);
}
public static AppointItemConfig GetAppointItem(string _key)
{
- return Config.Instance.Get<AppointItemConfig>(_key);
+ return AppointItemConfig.Get(_key);
}
public static AllPeoplePartyAwardConfig GetAllPeoplePartyAward(string _key)
{
- return Config.Instance.Get<AllPeoplePartyAwardConfig>(_key);
+ return AllPeoplePartyAwardConfig.Get(_key);
}
public static EquipWashConfig GetEquipWash(string _key)
{
- return Config.Instance.Get<EquipWashConfig>(_key);
+ return EquipWashConfig.Get(_key);
}
public static EquipSuitCompoundConfig GetEquipSuitCompound(string _key)
{
- return Config.Instance.Get<EquipSuitCompoundConfig>(_key);
+ return EquipSuitCompoundConfig.Get(_key);
}
public static EquipSuitAttrConfig GetEquipSuitAttr(string _key)
{
- return Config.Instance.Get<EquipSuitAttrConfig>(_key);
+ return EquipSuitAttrConfig.Get(_key);
}
public static EquipGSParamConfig GetEquipGSParam(string _key)
{
- return Config.Instance.Get<EquipGSParamConfig>(_key);
+ return EquipGSParamConfig.Get(_key);
}
public static EquipDeComposeConfig GetEquipDeCompose(string _key)
{
- return Config.Instance.Get<EquipDeComposeConfig>(_key);
+ return EquipDeComposeConfig.Get(_key);
}
public static ElderGodAreaConfig GetElderGodArea(string _key)
{
- return Config.Instance.Get<ElderGodAreaConfig>(_key);
+ return ElderGodAreaConfig.Get(_key);
}
public static EffectConfig GetEffect(string _key)
{
- return Config.Instance.Get<EffectConfig>(_key);
+ return EffectConfig.Get(_key);
}
public static DungeonStateTimeConfig GetDungeonStateTime(string _key)
{
- return Config.Instance.Get<DungeonStateTimeConfig>(_key);
+ return DungeonStateTimeConfig.Get(_key);
}
public static DungeonSpecialStateTimeConfig GetDungeonSpecialStateTime(string _key)
{
- return Config.Instance.Get<DungeonSpecialStateTimeConfig>(_key);
+ return DungeonSpecialStateTimeConfig.Get(_key);
}
public static DungeonOpenTimeConfig GetDungeonOpenTime(string _key)
{
- return Config.Instance.Get<DungeonOpenTimeConfig>(_key);
+ return DungeonOpenTimeConfig.Get(_key);
}
public static DungeonInspireConfig GetDungeonInspire(string _key)
{
- return Config.Instance.Get<DungeonInspireConfig>(_key);
+ return DungeonInspireConfig.Get(_key);
}
public static DungeonHintConfig GetDungeonHint(string _key)
{
- return Config.Instance.Get<DungeonHintConfig>(_key);
+ return DungeonHintConfig.Get(_key);
}
public static DungeonConfig GetDungeon(string _key)
{
- return Config.Instance.Get<DungeonConfig>(_key);
+ return DungeonConfig.Get(_key);
}
public static DogzEquipPlusConfig GetDogzEquipPlus(string _key)
{
- return Config.Instance.Get<DogzEquipPlusConfig>(_key);
+ return DogzEquipPlusConfig.Get(_key);
}
public static DogzDungeonConfig GetDogzDungeon(string _key)
{
- return Config.Instance.Get<DogzDungeonConfig>(_key);
+ return DogzDungeonConfig.Get(_key);
}
public static DogzConfig GetDogz(string _key)
{
- return Config.Instance.Get<DogzConfig>(_key);
+ return DogzConfig.Get(_key);
}
public static DirtyWordConfig GetDirtyWord(string _key)
{
- return Config.Instance.Get<DirtyWordConfig>(_key);
+ return DirtyWordConfig.Get(_key);
}
public static DirtyNameConfig GetDirtyName(string _key)
{
- return Config.Instance.Get<DirtyNameConfig>(_key);
+ return DirtyNameConfig.Get(_key);
}
public static DienstgradConfig GetDienstgrad(string _key)
{
- return Config.Instance.Get<DienstgradConfig>(_key);
+ return DienstgradConfig.Get(_key);
}
public static DialogConfig GetDialog(string _key)
{
- return Config.Instance.Get<DialogConfig>(_key);
+ return DialogConfig.Get(_key);
}
public static DemonRecommondPropertyConfig GetDemonRecommondProperty(string _key)
{
- return Config.Instance.Get<DemonRecommondPropertyConfig>(_key);
+ return DemonRecommondPropertyConfig.Get(_key);
}
public static DemonJarConfig GetDemonJar(string _key)
{
- return Config.Instance.Get<DemonJarConfig>(_key);
+ return DemonJarConfig.Get(_key);
}
public static AudioConfig GetAudio(string _key)
{
- return Config.Instance.Get<AudioConfig>(_key);
+ return AudioConfig.Get(_key);
}
public static mapnpcConfig Getmapnpc(string _key)
{
- return Config.Instance.Get<mapnpcConfig>(_key);
+ return mapnpcConfig.Get(_key);
}
public static MapEventPointConfig GetMapEventPoint(string _key)
{
- return Config.Instance.Get<MapEventPointConfig>(_key);
+ return MapEventPointConfig.Get(_key);
}
public static mapbornConfig Getmapborn(string _key)
{
- return Config.Instance.Get<mapbornConfig>(_key);
+ return mapbornConfig.Get(_key);
}
public static mapAreaConfig GetmapArea(string _key)
{
- return Config.Instance.Get<mapAreaConfig>(_key);
+ return mapAreaConfig.Get(_key);
}
public static MapConfig GetMap(string _key)
{
- return Config.Instance.Get<MapConfig>(_key);
+ return MapConfig.Get(_key);
}
public static MailConfig GetMail(string _key)
{
- return Config.Instance.Get<MailConfig>(_key);
+ return MailConfig.Get(_key);
}
public static LVAawrdConfig GetLVAawrd(string _key)
{
- return Config.Instance.Get<LVAawrdConfig>(_key);
+ return LVAawrdConfig.Get(_key);
}
public static LoginSeverListConfig GetLoginSeverList(string _key)
{
- return Config.Instance.Get<LoginSeverListConfig>(_key);
+ return LoginSeverListConfig.Get(_key);
}
public static LoginAdConfig GetLoginAd(string _key)
{
- return Config.Instance.Get<LoginAdConfig>(_key);
+ return LoginAdConfig.Get(_key);
}
public static LoadingTipConfig GetLoadingTip(string _key)
{
- return Config.Instance.Get<LoadingTipConfig>(_key);
+ return LoadingTipConfig.Get(_key);
}
public static LoadingFunctionConfig GetLoadingFunction(string _key)
{
- return Config.Instance.Get<LoadingFunctionConfig>(_key);
+ return LoadingFunctionConfig.Get(_key);
}
public static LanguageConfig GetLanguage(string _key)
{
- return Config.Instance.Get<LanguageConfig>(_key);
+ return LanguageConfig.Get(_key);
}
public static KickOutReasonConfig GetKickOutReason(string _key)
{
- return Config.Instance.Get<KickOutReasonConfig>(_key);
+ return KickOutReasonConfig.Get(_key);
}
public static JobSetupConfig GetJobSetup(string _key)
{
- return Config.Instance.Get<JobSetupConfig>(_key);
+ return JobSetupConfig.Get(_key);
}
public static JobNameConfig GetJobName(string _key)
{
- return Config.Instance.Get<JobNameConfig>(_key);
+ return JobNameConfig.Get(_key);
}
public static ItemPlusSumAttrConfig GetItemPlusSumAttr(string _key)
{
- return Config.Instance.Get<ItemPlusSumAttrConfig>(_key);
+ return ItemPlusSumAttrConfig.Get(_key);
}
public static ItemPlusMaxConfig GetItemPlusMax(string _key)
{
- return Config.Instance.Get<ItemPlusMaxConfig>(_key);
+ return ItemPlusMaxConfig.Get(_key);
}
public static ItemPlusConfig GetItemPlus(string _key)
{
- return Config.Instance.Get<ItemPlusConfig>(_key);
+ return ItemPlusConfig.Get(_key);
}
public static ItemCompoundConfig GetItemCompound(string _key)
{
- return Config.Instance.Get<ItemCompoundConfig>(_key);
+ return ItemCompoundConfig.Get(_key);
}
public static ItemConfig GetItem(string _key)
{
- return Config.Instance.Get<ItemConfig>(_key);
+ return ItemConfig.Get(_key);
}
public static InvestConfig GetInvest(string _key)
{
- return Config.Instance.Get<InvestConfig>(_key);
+ return InvestConfig.Get(_key);
}
public static InSevenDaysConfig GetInSevenDays(string _key)
{
- return Config.Instance.Get<InSevenDaysConfig>(_key);
+ return InSevenDaysConfig.Get(_key);
}
public static IconConfig GetIcon(string _key)
{
- return Config.Instance.Get<IconConfig>(_key);
+ return IconConfig.Get(_key);
}
public static HorseUpConfig GetHorseUp(string _key)
{
- return Config.Instance.Get<HorseUpConfig>(_key);
+ return HorseUpConfig.Get(_key);
}
}
\ No newline at end of file
--
Gitblit v1.8.0