mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-30 20:02:49 -05:00
12 lines
427 B
C#
12 lines
427 B
C#
using UnityEngine;
|
|||
|
|||
namespace UnityAtoms.BaseAtoms
|
|||
{
|
|||
/// <summary>
|
|||
/// Event Instancer of type `DoublePair`. Inherits from `AtomEventInstancer<DoublePair, DoublePairEvent>`.
|
|||
/// </summary>
|
|||
[EditorIcon("atom-icon-sign-blue")]
|
|||
[AddComponentMenu("Unity Atoms/Event Instancers/DoublePair Event Instancer")]
|
|||
public class DoublePairEventInstancer : AtomEventInstancer<DoublePair, DoublePairEvent> { }
|
|||
}
|