mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 08:38:23 -05:00
9ca9ece812
14 lines
382 B
C#
14 lines
382 B
C#
using UnityEngine;
|
|||
|
|||
namespace UnityAtoms.BaseAtoms
|
|||
{
|
|||
/// <summary>
|
|||
/// Event of type `Quaternion`. Inherits from `AtomEvent<Quaternion>`.
|
|||
/// </summary>
|
|||
[EditorIcon("atom-icon-cherry")]
|
|||
[CreateAssetMenu(menuName = "Unity Atoms/Events/Quaternion", fileName = "QuaternionEvent")]
|
|||
public sealed class QuaternionEvent : AtomEvent<Quaternion>
|
|||
{
|
|||
}
|
|||
}
|