mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-31 04:12:52 -05:00
9 lines
264 B
C#
9 lines
264 B
C#
namespace UnityAtoms.BaseAtoms
|
|||
{
|
|||
/// <summary>
|
|||
/// Action of type `DoublePair`. Inherits from `AtomAction<DoublePair>`.
|
|||
/// </summary>
|
|||
[EditorIcon("atom-icon-purple")]
|
|||
public abstract class DoublePairAction : AtomAction<DoublePair> { }
|
|||
}
|