using System.Collections.Generic;
using UnityEngine;
namespace Chernobyl.Unity.Value
{
///
/// A collection of items that can be saved and edited through the Unity editor.
///
public abstract class UnityList : ScriptableObject
{
///
/// The items in this set.
///
public List Items = new List();
}
}