// Auto Generated Code By excel2json // Generate From Excel\Reddot.xlsx. SheetName: ReddotConfig using System; using Fort23.GameData; namespace Excel2Json { [Config(prefab = "ReddotConfig.json")] public partial class ReddotConfigHolder : ConfigHolder { } [Serializable] public struct ReddotConfig : IConfig { public int GetID() {return ID;} /// ///ID /// #if !COMBAT_SERVER public int ID; #else public int ID{ set; get; } #endif /// ///红点组ID /// #if !COMBAT_SERVER public int GroupID; #else public int GroupID{ set; get; } #endif /// ///关联组ID 填写与本组相关联的组ID /// #if !COMBAT_SERVER public int[] LinkGroupID; #else public int[] LinkGroupID{ set; get; } #endif /// ///激活来自指定 /// #if !COMBAT_SERVER public int EnableForTarget; #else public int EnableForTarget{ set; get; } #endif /// ///红点层级数 /// #if !COMBAT_SERVER public int Layer; #else public int Layer{ set; get; } #endif /// ///红点序列 /// #if !COMBAT_SERVER public int Enable; #else public int Enable{ set; get; } #endif /// ///是否点了暂时消失 /// #if !COMBAT_SERVER public int Visible; #else public int Visible{ set; get; } #endif } } // End of Auto Generated Code