using UnityEngine;
namespace Chernobyl.Unity.Value
{
    /// 
    /// Holds a single item that can be saved and edited through the Unity editor.
    /// 
    public abstract class UnityValue : ScriptableObject
    {
        /// 
        /// The item in this holder.
        /// 
        public T Value;
    }
}