unity-atoms/Packages/BaseAtoms/Runtime/Actions/IntPairAction.cs

9 lines
252 B
C#
Raw Normal View History

2020-03-01 20:26:06 -05:00
namespace UnityAtoms.BaseAtoms
{
/// <summary>
/// Action of type `IntPair`. Inherits from `AtomAction&lt;IntPair&gt;`.
/// </summary>
[EditorIcon("atom-icon-purple")]
public abstract class IntPairAction : AtomAction<IntPair> { }
}