//------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ namespace Tools.ExcelResolver { using System; using System.Collections; using System.Collections.Generic; using UnityEngine; using Sirenix.OdinInspector; public class monster2 : SerializedScriptableObject, IExcelSOData { /// /// 英雄 /// public int id; /// /// 等级 /// public int level; /// /// 星级 /// public int star; /// /// 名称 /// public string name; /// /// icon /// public string icon; /// /// 有宠物 /// public bool has; /// /// 血量 /// public int hp; /// /// 攻击力 /// public int atk; /// /// 移速 /// public float speed; /// /// 位置 /// public Vector3 pos; /// /// 位置 /// public Vector2 ches; /// /// 攻击优先级 /// public List attack_target; /// /// 你好 /// public Dictionary nihao; /// /// /// public CustomizeColor color; } }