unity-atoms/Packages/BaseAtoms/Runtime/Actions/Vector2PairAction.cs
Adam Ramberg c3bc59259f More WIP
2020-03-02 02:26:06 +01:00

10 lines
287 B
C#

using UnityEngine;
namespace UnityAtoms.BaseAtoms
{
/// <summary>
/// Action of type `Vector2Pair`. Inherits from `AtomAction&lt;Vector2Pair&gt;`.
/// </summary>
[EditorIcon("atom-icon-purple")]
public abstract class Vector2PairAction : AtomAction<Vector2Pair> { }
}