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