unity-atoms/Packages/Core/Runtime/Actions/Vector2Action.cs
2019-10-15 22:34:08 +02:00

10 lines
261 B
C#

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