12 lines
434 B
C#
12 lines
434 B
C#
using UnityEngine;
|
|
using KitsuneCafe.ItemSystem;
|
|
|
|
namespace UnityAtoms.KitsuneCafe.Atom.ItemSystem
|
|
{
|
|
/// <summary>
|
|
/// Value List of type `Item`. Inherits from `AtomValueList<Item, ItemEvent>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-piglet")]
|
|
[CreateAssetMenu(menuName = "Unity Atoms/Value Lists/Item", fileName = "ItemValueList")]
|
|
public sealed class ItemValueList : AtomValueList<Item, ItemEvent> { }
|
|
}
|