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