using System.Collections;
using System.Collections.Generic;
using UnityEngine;
///
/// 数值修改器
///
public class ValueModifier {
/// 固定值
public float Fixed;
/// 附加值
public float Added;
/// 固定值
public virtual float FixedValue => Fixed;
/// 附加值%
public virtual float AddedValue => Added;
}