9 lines
288 B
C#
9 lines
288 B
C#
using KitsuneCafe.ItemSystem;
|
|
namespace UnityAtoms.KitsuneCafe.Atom.ItemSystem
|
|
{
|
|
/// <summary>
|
|
/// Action of type `Item`. Inherits from `AtomAction<Item>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-purple")]
|
|
public abstract class ItemAction : AtomAction<Item> { }
|
|
}
|