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

10 lines
287 B
C#
Raw Normal View History

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