| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | 
							- // Auto Generated Code By excel2json
 
- // Generate From Excel\ChouKa.xlsx. SheetName: DropGroupConfig
 
- using System;
 
- using Fort23.GameData;
 
- namespace Excel2Json
 
- {
 
- 	[Config(prefab = "DropGroupConfig.json")]
 
- 	public partial class DropGroupConfigHolder : ConfigHolder<DropGroupConfig>
	{
 
- 	}
 
- 	[Serializable]
 
- 	public struct DropGroupConfig : IConfig
	{
 
- 		public int GetID() {return ID;} 
 
- 		/// <summary>
 
- 		///掉落组ID
 
- 		/// </summary>
 
- #if !COMBAT_SERVER
 
- 		public int ID;
 
- #else
 
- 		public int ID{ set; get; }
 
- #endif
 
- 		
 
- 		/// <summary>
 
- 		///掉落概率\权重 1000为100%
 
- 		/// </summary>
 
- #if !COMBAT_SERVER
 
- 		public int dropRate;
 
- #else
 
- 		public int dropRate{ set; get; }
 
- #endif
 
- 		
 
- 		/// <summary>
 
- 		///
 
- 		/// </summary>
 
- #if !COMBAT_SERVER
 
- 		public int[] dropItemID;
 
- #else
 
- 		public int[] dropItemID{ set; get; }
 
- #endif
 
- 		
 
- 	}
 
- }
 
- // End of Auto Generated Code
 
 
  |