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