using System; namespace GeometryTD.Definition { /// /// 防御塔独立属性快照。 /// 注意:这里是塔实例的独立值,不通过组件引用实时计算。 /// [Serializable] public sealed class TowerStatsData { public int[] AttackDamage { get; set; } public float DamageRandomRate { get; set; } public float[] RotateSpeed { get; set; } public float[] AttackRange { get; set; } public float[] AttackSpeed { get; set; } public AttackMethodType AttackMethodType { get; set; } public AttackPropertyType AttackPropertyType { get; set; } public TagRuntimeData[] TagRuntimes { get; set; } public TagType[] Tags { get; set; } } }