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