12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- // Auto Generated Code By excel2json
- // Generate From Excel\Sentiment.xlsx. SheetName: SentimentConfig
- using System;
- using Fort23.GameData;
- namespace Excel2Json
- {
- [Config(prefab = "SentimentConfig.json")]
- public partial class SentimentConfigHolder : ConfigHolder<SentimentConfig>
{
- }
- [Serializable]
- public struct SentimentConfig : IConfig
{
- public int GetID() {return ID;}
- /// <summary>
- ///modelID
- /// </summary>
- #if !COMBAT_SERVER
- public int ID;
- #else
- public int ID{ set; get; }
- #endif
-
- /// <summary>
- ///名称
- /// </summary>
- #if !COMBAT_SERVER
- public int name;
- #else
- public int name{ set; get; }
- #endif
-
- /// <summary>
- ///图片
- /// </summary>
- #if !COMBAT_SERVER
- public string icon;
- #else
- public string icon{ set; get; }
- #endif
-
- /// <summary>
- ///核心感悟点
- /// </summary>
- #if !COMBAT_SERVER
- public int mainSentimentEffect;
- #else
- public int mainSentimentEffect{ set; get; }
- #endif
-
- /// <summary>
- ///支线感悟点
- /// </summary>
- #if !COMBAT_SERVER
- public int[] sentimentEffect;
- #else
- public int[] sentimentEffect{ set; get; }
- #endif
-
- }
- }
- // End of Auto Generated Code
|