unity-atoms/Packages/Core/Runtime/Actions/Vector3Action.cs

10 lines
261 B
C#
Raw Normal View History

2018-10-30 15:05:06 -04:00
using UnityEngine;
namespace UnityAtoms
{
2019-10-15 16:34:48 -04:00
/// <summary>
/// Action of type `Vector3`. Inherits from `AtomAction&lt;Vector3&gt;`.
/// </summary>
2019-10-14 10:51:54 -04:00
[EditorIcon("atom-icon-purple")]
public abstract class Vector3Action : AtomAction<Vector3> { }
}