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

10 lines
261 B
C#

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