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