mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-22 16:18:24 -05:00
10 lines
271 B
C#
10 lines
271 B
C#
using UnityEngine;
|
|
namespace UnityAtoms.BaseAtoms
|
|
{
|
|
/// <summary>
|
|
/// Action of type `Vector2`. Inherits from `AtomAction<Vector2>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-purple")]
|
|
public abstract class Vector2Action : AtomAction<Vector2> { }
|
|
}
|