canto/Assets/Scripts/Item/Atoms/Actions/ItemAction.cs
2025-10-02 15:28:03 -04:00

9 lines
288 B
C#

using KitsuneCafe.ItemSystem;
namespace UnityAtoms.KitsuneCafe.Atom.ItemSystem
{
/// <summary>
/// Action of type `Item`. Inherits from `AtomAction&lt;Item&gt;`.
/// </summary>
[EditorIcon("atom-icon-purple")]
public abstract class ItemAction : AtomAction<Item> { }
}