少年修仙传客户端代码仓库
client_Wu Xijin
2019-02-13 c7f64d977c4e2884d5411a5a2d0f37b6afa52963
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
 
 
[XLua.LuaCallCSharp]
public static class ConfigUtil
{
    //这里插入配置表获取方法
    public static CrossServerArenaConfig GetCrossServerArena(string _key)
    {
        return CrossServerArenaConfig.Get(_key);
    }
 
    public static FuncSwitchConfig GetFuncSwitch(string _key)
    {
        return FuncSwitchConfig.Get(_key);
    }
 
    public static GatherSoulConfig GetGatherSoul(string _key)
    {
        return GatherSoulConfig.Get(_key);
    }
 
    public static GatherSoulComposeConfig GetGatherSoulCompose(string _key)
    {
        return GatherSoulComposeConfig.Get(_key);
    }
 
    public static DungeonHelpBattleConfig GetDungeonHelpBattle(string _key)
    {
        return DungeonHelpBattleConfig.Get(_key);
    }
 
    public static GatherSoulPropertyConfig GetGatherSoulProperty(string _key)
    {
        return GatherSoulPropertyConfig.Get(_key);
    }
 
    public static KingTreasureItemConfig GetKingTreasureItem(string _key)
    {
        return KingTreasureItemConfig.Get(_key);
    }
 
    public static KingTreasureConfig GetKingTreasure(string _key)
    {
        return KingTreasureConfig.Get(_key);
    }
 
    public static AncientRobotNameConfig GetAncientRobotName(string _key)
    {
        return AncientRobotNameConfig.Get(_key);
    }
 
    public static ChatBubbleBoxConfig GetChatBubbleBox(string _key)
    {
        return ChatBubbleBoxConfig.Get(_key);
    }
 
    public static IceLodeStarAwardConfig GetIceLodeStarAward(string _key)
    {
        return IceLodeStarAwardConfig.Get(_key);
    }
 
    public static MarketQueryConfig GetMarketQuery(string _key)
    {
        return MarketQueryConfig.Get(_key);
    }
 
    public static GodWeaponEffectConfig GetGodWeaponEffect(string _key)
    {
        return GodWeaponEffectConfig.Get(_key);
    }
 
    public static GuardConfig GetGuard(string _key)
    {
        return GuardConfig.Get(_key);
    }
 
    public static HelpInfoConfig GetHelpInfo(string _key)
    {
        return HelpInfoConfig.Get(_key);
    }
 
    public static PriorLanguageConfig GetPriorLanguage(string _key)
    {
        return PriorLanguageConfig.Get(_key);
    }
 
    public static PriorBundleConfig GetPriorBundle(string _key)
    {
        return PriorBundleConfig.Get(_key);
    }
 
    public static LoadingBackGroundConfig GetLoadingBackGround(string _key)
    {
        return LoadingBackGroundConfig.Get(_key);
    }
 
    public static ContactConfig GetContact(string _key)
    {
        return ContactConfig.Get(_key);
    }
 
    public static TreasureDungeonConfig GetTreasureDungeon(string _key)
    {
        return TreasureDungeonConfig.Get(_key);
    }
 
    public static TaskPowerConfig GetTaskPower(string _key)
    {
        return TaskPowerConfig.Get(_key);
    }
 
    public static ApkUpdateUrlConfig GetApkUpdateUrl(string _key)
    {
        return ApkUpdateUrlConfig.Get(_key);
    }
 
    public static SkillConfig GetSkill(string _key)
    {
        return SkillConfig.Get(_key);
    }
 
    public static SignInConfig GetSignIn(string _key)
    {
        return SignInConfig.Get(_key);
    }
 
    public static SceneShadowConfig GetSceneShadow(string _key)
    {
        return SceneShadowConfig.Get(_key);
    }
 
    public static RuneTowerFloorConfig GetRuneTowerFloor(string _key)
    {
        return RuneTowerFloorConfig.Get(_key);
    }
 
    public static RuneTowerConfig GetRuneTower(string _key)
    {
        return RuneTowerConfig.Get(_key);
    }
 
    public static RuneComposeConfig GetRuneCompose(string _key)
    {
        return RuneComposeConfig.Get(_key);
    }
 
    public static RuneConfig GetRune(string _key)
    {
        return RuneConfig.Get(_key);
    }
 
    public static RuleConfig GetRule(string _key)
    {
        return RuleConfig.Get(_key);
    }
 
    public static RoleStrongerConfig GetRoleStronger(string _key)
    {
        return RoleStrongerConfig.Get(_key);
    }
 
    public static RoleResourceConfig GetRoleResource(string _key)
    {
        return RoleResourceConfig.Get(_key);
    }
 
    public static RoleEquipStarsConfig GetRoleEquipStars(string _key)
    {
        return RoleEquipStarsConfig.Get(_key);
    }
 
    public static RichTextMsgReplaceConfig GetRichTextMsgReplace(string _key)
    {
        return RichTextMsgReplaceConfig.Get(_key);
    }
 
    public static ResourcesBackConfig GetResourcesBack(string _key)
    {
        return ResourcesBackConfig.Get(_key);
    }
 
    public static RefineStoveConfig GetRefineStove(string _key)
    {
        return RefineStoveConfig.Get(_key);
    }
 
    public static RedPackConfig GetRedPack(string _key)
    {
        return RedPackConfig.Get(_key);
    }
 
    public static RealmPracticeConfig GetRealmPractice(string _key)
    {
        return RealmPracticeConfig.Get(_key);
    }
 
    public static RealmConfig GetRealm(string _key)
    {
        return RealmConfig.Get(_key);
    }
 
    public static RankListConfig GetRankList(string _key)
    {
        return RankListConfig.Get(_key);
    }
 
    public static RandomNameConfig GetRandomName(string _key)
    {
        return RandomNameConfig.Get(_key);
    }
 
    public static QuestionBankConfig GetQuestionBank(string _key)
    {
        return QuestionBankConfig.Get(_key);
    }
 
    public static PyTaskConfig GetPyTask(string _key)
    {
        return PyTaskConfig.Get(_key);
    }
 
    public static PlayerPropertyConfig GetPlayerProperty(string _key)
    {
        return PlayerPropertyConfig.Get(_key);
    }
 
    public static PlayerLVConfig GetPlayerLV(string _key)
    {
        return PlayerLVConfig.Get(_key);
    }
 
    public static PetInfoConfig GetPetInfo(string _key)
    {
        return PetInfoConfig.Get(_key);
    }
 
    public static PetEatEquipConfig GetPetEatEquip(string _key)
    {
        return PetEatEquipConfig.Get(_key);
    }
 
    public static PetClassCostConfig GetPetClassCost(string _key)
    {
        return PetClassCostConfig.Get(_key);
    }
 
    public static PersonalBossConfig GetPersonalBoss(string _key)
    {
        return PersonalBossConfig.Get(_key);
    }
 
    public static OSRedAchieveConfig GetOSRedAchieve(string _key)
    {
        return OSRedAchieveConfig.Get(_key);
    }
 
    public static OSCBillTagAwardConfig GetOSCBillTagAward(string _key)
    {
        return OSCBillTagAwardConfig.Get(_key);
    }
 
    public static OSCBillRankAwardConfig GetOSCBillRankAward(string _key)
    {
        return OSCBillRankAwardConfig.Get(_key);
    }
 
    public static OrderInfoConfig GetOrderInfo(string _key)
    {
        return OrderInfoConfig.Get(_key);
    }
 
    public static OnlineAwardConfig GetOnlineAward(string _key)
    {
        return OnlineAwardConfig.Get(_key);
    }
 
    public static OccupationNameConfig GetOccupationName(string _key)
    {
        return OccupationNameConfig.Get(_key);
    }
 
    public static NPCDropItemConfig GetNPCDropItem(string _key)
    {
        return NPCDropItemConfig.Get(_key);
    }
 
    public static NPCDialogueConfig GetNPCDialogue(string _key)
    {
        return NPCDialogueConfig.Get(_key);
    }
 
    public static NPCConfig GetNPC(string _key)
    {
        return NPCConfig.Get(_key);
    }
 
    public static MonsterRefreshPointConfig GetMonsterRefreshPoint(string _key)
    {
        return MonsterRefreshPointConfig.Get(_key);
    }
 
    public static MonsterNameColorConfig GetMonsterNameColor(string _key)
    {
        return MonsterNameColorConfig.Get(_key);
    }
 
    public static ModelResConfig GetModelRes(string _key)
    {
        return ModelResConfig.Get(_key);
    }
 
    public static MarketConfig GetMarket(string _key)
    {
        return MarketConfig.Get(_key);
    }
 
    public static MapUiControlConfig GetMapUiControl(string _key)
    {
        return MapUiControlConfig.Get(_key);
    }
 
    public static maptransportConfig Getmaptransport(string _key)
    {
        return maptransportConfig.Get(_key);
    }
 
    public static MapResourcesConfig GetMapResources(string _key)
    {
        return MapResourcesConfig.Get(_key);
    }
 
    public static DamageNumConfig GetDamageNum(string _key)
    {
        return DamageNumConfig.Get(_key);
    }
 
    public static DailyQuestSpecialOpenTimeConfig GetDailyQuestSpecialOpenTime(string _key)
    {
        return DailyQuestSpecialOpenTimeConfig.Get(_key);
    }
 
    public static DailyQuestOpenTimeConfig GetDailyQuestOpenTime(string _key)
    {
        return DailyQuestOpenTimeConfig.Get(_key);
    }
 
    public static DailyQuestConfig GetDailyQuest(string _key)
    {
        return DailyQuestConfig.Get(_key);
    }
 
    public static DailyLivenessRewardConfig GetDailyLivenessReward(string _key)
    {
        return DailyLivenessRewardConfig.Get(_key);
    }
 
    public static CTGConfig GetCTG(string _key)
    {
        return CTGConfig.Get(_key);
    }
 
    public static CreateRoleConfig GetCreateRole(string _key)
    {
        return CreateRoleConfig.Get(_key);
    }
 
    public static ContinueSignInConfig GetContinueSignIn(string _key)
    {
        return ContinueSignInConfig.Get(_key);
    }
 
    public static ChestsAwardConfig GetChestsAward(string _key)
    {
        return ChestsAwardConfig.Get(_key);
    }
 
    public static ChestsConfig GetChests(string _key)
    {
        return ChestsConfig.Get(_key);
    }
 
    public static bossSkillTipsConfig GetbossSkillTips(string _key)
    {
        return bossSkillTipsConfig.Get(_key);
    }
 
    public static HorseConfig GetHorse(string _key)
    {
        return HorseConfig.Get(_key);
    }
 
    public static GuideConfig GetGuide(string _key)
    {
        return GuideConfig.Get(_key);
    }
 
    public static GodWeaponConfig GetGodWeapon(string _key)
    {
        return GodWeaponConfig.Get(_key);
    }
 
    public static GmCmdConfig GetGmCmd(string _key)
    {
        return GmCmdConfig.Get(_key);
    }
 
    public static GetItemWaysConfig GetGetItemWays(string _key)
    {
        return GetItemWaysConfig.Get(_key);
    }
 
    public static FunctionForecastConfig GetFunctionForecast(string _key)
    {
        return FunctionForecastConfig.Get(_key);
    }
 
    public static FuncOpenLVConfig GetFuncOpenLV(string _key)
    {
        return FuncOpenLVConfig.Get(_key);
    }
 
    public static FuncConfigConfig GetFuncConfig(string _key)
    {
        return FuncConfigConfig.Get(_key);
    }
 
    public static FreeGoodsConfig GetFreeGoods(string _key)
    {
        return FreeGoodsConfig.Get(_key);
    }
 
    public static FightPowerParamConfig GetFightPowerParam(string _key)
    {
        return FightPowerParamConfig.Get(_key);
    }
 
    public static FamilyTechConfig GetFamilyTech(string _key)
    {
        return FamilyTechConfig.Get(_key);
    }
 
    public static FamilyConfig GetFamily(string _key)
    {
        return FamilyConfig.Get(_key);
    }
 
    public static FairyGrabBossConfig GetFairyGrabBoss(string _key)
    {
        return FairyGrabBossConfig.Get(_key);
    }
 
    public static FaceConfig GetFace(string _key)
    {
        return FaceConfig.Get(_key);
    }
 
    public static EquipWashSpecConfig GetEquipWashSpec(string _key)
    {
        return EquipWashSpecConfig.Get(_key);
    }
 
    public static BossRebornConfig GetBossReborn(string _key)
    {
        return BossRebornConfig.Get(_key);
    }
 
    public static BossInfoConfig GetBossInfo(string _key)
    {
        return BossInfoConfig.Get(_key);
    }
 
    public static AreaCameraConfig GetAreaCamera(string _key)
    {
        return AreaCameraConfig.Get(_key);
    }
 
    public static AlchemyConfig GetAlchemy(string _key)
    {
        return AlchemyConfig.Get(_key);
    }
 
    public static AlchemySpecConfig GetAlchemySpec(string _key)
    {
        return AlchemySpecConfig.Get(_key);
    }
 
    public static XMZZAchievementConfig GetXMZZAchievement(string _key)
    {
        return XMZZAchievementConfig.Get(_key);
    }
 
    public static XBGetItemConfig GetXBGetItem(string _key)
    {
        return XBGetItemConfig.Get(_key);
    }
 
    public static WorldBossConfig GetWorldBoss(string _key)
    {
        return WorldBossConfig.Get(_key);
    }
 
    public static WingRefineExpConfig GetWingRefineExp(string _key)
    {
        return WingRefineExpConfig.Get(_key);
    }
 
    public static WingRefineAttrConfig GetWingRefineAttr(string _key)
    {
        return WingRefineAttrConfig.Get(_key);
    }
 
    public static WindowSearchConfig GetWindowSearch(string _key)
    {
        return WindowSearchConfig.Get(_key);
    }
 
    public static WHYJRewardConfig GetWHYJReward(string _key)
    {
        return WHYJRewardConfig.Get(_key);
    }
 
    public static WeatherConfig GetWeather(string _key)
    {
        return WeatherConfig.Get(_key);
    }
 
    public static VipPrivilegeConfig GetVipPrivilege(string _key)
    {
        return VipPrivilegeConfig.Get(_key);
    }
 
    public static VIPKillNPCConfig GetVIPKillNPC(string _key)
    {
        return VIPKillNPCConfig.Get(_key);
    }
 
    public static VIPAwardConfig GetVIPAward(string _key)
    {
        return VIPAwardConfig.Get(_key);
    }
 
    public static ViewRoleFuncConfig GetViewRoleFunc(string _key)
    {
        return ViewRoleFuncConfig.Get(_key);
    }
 
    public static UniquenessArriveConfig GetUniquenessArrive(string _key)
    {
        return UniquenessArriveConfig.Get(_key);
    }
 
    public static UnionLivenConfig GetUnionLiven(string _key)
    {
        return UnionLivenConfig.Get(_key);
    }
 
    public static TrialRewardsConfig GetTrialRewards(string _key)
    {
        return TrialRewardsConfig.Get(_key);
    }
 
    public static TrialExchangeConfig GetTrialExchange(string _key)
    {
        return TrialExchangeConfig.Get(_key);
    }
 
    public static TreasureUpConfig GetTreasureUp(string _key)
    {
        return TreasureUpConfig.Get(_key);
    }
 
    public static TreasureSkillConfig GetTreasureSkill(string _key)
    {
        return TreasureSkillConfig.Get(_key);
    }
 
    public static TreasureRefineConfig GetTreasureRefine(string _key)
    {
        return TreasureRefineConfig.Get(_key);
    }
 
    public static TreasurePrivilegeConfig GetTreasurePrivilege(string _key)
    {
        return TreasurePrivilegeConfig.Get(_key);
    }
 
    public static TreasureFindHostConfig GetTreasureFindHost(string _key)
    {
        return TreasureFindHostConfig.Get(_key);
    }
 
    public static TreasureConfig GetTreasure(string _key)
    {
        return TreasureConfig.Get(_key);
    }
 
    public static TeamTargetConfig GetTeamTarget(string _key)
    {
        return TeamTargetConfig.Get(_key);
    }
 
    public static TaskListConfig GetTaskList(string _key)
    {
        return TaskListConfig.Get(_key);
    }
 
    public static TASKINFOConfig GetTASKINFO(string _key)
    {
        return TASKINFOConfig.Get(_key);
    }
 
    public static TalentConfig GetTalent(string _key)
    {
        return TalentConfig.Get(_key);
    }
 
    public static SysInfoConfig GetSysInfo(string _key)
    {
        return SysInfoConfig.Get(_key);
    }
 
    public static SuitEffectConfig GetSuitEffect(string _key)
    {
        return SuitEffectConfig.Get(_key);
    }
 
    public static SuccessConfig GetSuccess(string _key)
    {
        return SuccessConfig.Get(_key);
    }
 
    public static StoryMissionsConfig GetStoryMissions(string _key)
    {
        return StoryMissionsConfig.Get(_key);
    }
 
    public static StoreConfig GetStore(string _key)
    {
        return StoreConfig.Get(_key);
    }
 
    public static AllPeoplePartyConfig GetAllPeopleParty(string _key)
    {
        return AllPeoplePartyConfig.Get(_key);
    }
 
    public static AttrFruitConfig GetAttrFruit(string _key)
    {
        return AttrFruitConfig.Get(_key);
    }
 
    public static ActorShowConfig GetActorShow(string _key)
    {
        return ActorShowConfig.Get(_key);
    }
 
    public static BossHomeConfig GetBossHome(string _key)
    {
        return BossHomeConfig.Get(_key);
    }
 
    public static AppointItemConfig GetAppointItem(string _key)
    {
        return AppointItemConfig.Get(_key);
    }
 
    public static AllPeoplePartyAwardConfig GetAllPeoplePartyAward(string _key)
    {
        return AllPeoplePartyAwardConfig.Get(_key);
    }
 
    public static EquipWashConfig GetEquipWash(string _key)
    {
        return EquipWashConfig.Get(_key);
    }
 
    public static EquipSuitCompoundConfig GetEquipSuitCompound(string _key)
    {
        return EquipSuitCompoundConfig.Get(_key);
    }
 
    public static EquipSuitAttrConfig GetEquipSuitAttr(string _key)
    {
        return EquipSuitAttrConfig.Get(_key);
    }
 
    public static EquipGSParamConfig GetEquipGSParam(string _key)
    {
        return EquipGSParamConfig.Get(_key);
    }
 
    public static EquipDeComposeConfig GetEquipDeCompose(string _key)
    {
        return EquipDeComposeConfig.Get(_key);
    }
 
    public static ElderGodAreaConfig GetElderGodArea(string _key)
    {
        return ElderGodAreaConfig.Get(_key);
    }
 
    public static EffectConfig GetEffect(string _key)
    {
        return EffectConfig.Get(_key);
    }
 
    public static DungeonStateTimeConfig GetDungeonStateTime(string _key)
    {
        return DungeonStateTimeConfig.Get(_key);
    }
 
    public static DungeonSpecialStateTimeConfig GetDungeonSpecialStateTime(string _key)
    {
        return DungeonSpecialStateTimeConfig.Get(_key);
    }
 
    public static DungeonOpenTimeConfig GetDungeonOpenTime(string _key)
    {
        return DungeonOpenTimeConfig.Get(_key);
    }
 
    public static DungeonInspireConfig GetDungeonInspire(string _key)
    {
        return DungeonInspireConfig.Get(_key);
    }
 
    public static DungeonHintConfig GetDungeonHint(string _key)
    {
        return DungeonHintConfig.Get(_key);
    }
 
    public static DungeonConfig GetDungeon(string _key)
    {
        return DungeonConfig.Get(_key);
    }
 
    public static DogzEquipPlusConfig GetDogzEquipPlus(string _key)
    {
        return DogzEquipPlusConfig.Get(_key);
    }
 
    public static DogzDungeonConfig GetDogzDungeon(string _key)
    {
        return DogzDungeonConfig.Get(_key);
    }
 
    public static DogzConfig GetDogz(string _key)
    {
        return DogzConfig.Get(_key);
    }
 
    public static DirtyWordConfig GetDirtyWord(string _key)
    {
        return DirtyWordConfig.Get(_key);
    }
 
    public static DirtyNameConfig GetDirtyName(string _key)
    {
        return DirtyNameConfig.Get(_key);
    }
 
    public static DienstgradConfig GetDienstgrad(string _key)
    {
        return DienstgradConfig.Get(_key);
    }
 
    public static DialogConfig GetDialog(string _key)
    {
        return DialogConfig.Get(_key);
    }
 
    public static DemonRecommondPropertyConfig GetDemonRecommondProperty(string _key)
    {
        return DemonRecommondPropertyConfig.Get(_key);
    }
 
    public static DemonJarConfig GetDemonJar(string _key)
    {
        return DemonJarConfig.Get(_key);
    }
 
    public static AudioConfig GetAudio(string _key)
    {
        return AudioConfig.Get(_key);
    }
 
    public static mapnpcConfig Getmapnpc(string _key)
    {
        return mapnpcConfig.Get(_key);
    }
 
    public static MapEventPointConfig GetMapEventPoint(string _key)
    {
        return MapEventPointConfig.Get(_key);
    }
 
    public static mapbornConfig Getmapborn(string _key)
    {
        return mapbornConfig.Get(_key);
    }
 
    public static mapAreaConfig GetmapArea(string _key)
    {
        return mapAreaConfig.Get(_key);
    }
 
    public static MapConfig GetMap(string _key)
    {
        return MapConfig.Get(_key);
    }
 
    public static MailConfig GetMail(string _key)
    {
        return MailConfig.Get(_key);
    }
 
    public static LVAawrdConfig GetLVAawrd(string _key)
    {
        return LVAawrdConfig.Get(_key);
    }
 
    public static LoginSeverListConfig GetLoginSeverList(string _key)
    {
        return LoginSeverListConfig.Get(_key);
    }
 
    public static LoginAdConfig GetLoginAd(string _key)
    {
        return LoginAdConfig.Get(_key);
    }
 
    public static LoadingTipConfig GetLoadingTip(string _key)
    {
        return LoadingTipConfig.Get(_key);
    }
 
    public static LoadingFunctionConfig GetLoadingFunction(string _key)
    {
        return LoadingFunctionConfig.Get(_key);
    }
 
    public static LanguageConfig GetLanguage(string _key)
    {
        return LanguageConfig.Get(_key);
    }
 
    public static KickOutReasonConfig GetKickOutReason(string _key)
    {
        return KickOutReasonConfig.Get(_key);
    }
 
    public static JobSetupConfig GetJobSetup(string _key)
    {
        return JobSetupConfig.Get(_key);
    }
 
    public static JobNameConfig GetJobName(string _key)
    {
        return JobNameConfig.Get(_key);
    }
 
    public static ItemPlusSumAttrConfig GetItemPlusSumAttr(string _key)
    {
        return ItemPlusSumAttrConfig.Get(_key);
    }
 
    public static ItemPlusMaxConfig GetItemPlusMax(string _key)
    {
        return ItemPlusMaxConfig.Get(_key);
    }
 
    public static ItemPlusConfig GetItemPlus(string _key)
    {
        return ItemPlusConfig.Get(_key);
    }
 
    public static ItemCompoundConfig GetItemCompound(string _key)
    {
        return ItemCompoundConfig.Get(_key);
    }
 
    public static ItemConfig GetItem(string _key)
    {
        return ItemConfig.Get(_key);
    }
 
    public static InvestConfig GetInvest(string _key)
    {
        return InvestConfig.Get(_key);
    }
 
    public static InSevenDaysConfig GetInSevenDays(string _key)
    {
        return InSevenDaysConfig.Get(_key);
    }
 
    public static IconConfig GetIcon(string _key)
    {
        return IconConfig.Get(_key);
    }
 
    public static HorseUpConfig GetHorseUp(string _key)
    {
        return HorseUpConfig.Get(_key);
    }
 
}