14 lines
370 B
C#
Raw Normal View History

2020-03-02 02:26:06 +01:00
using UnityEngine;
namespace UnityAtoms.BaseAtoms
{
/// <summary>
/// Event of type `BoolPair`. Inherits from `AtomEvent&lt;BoolPair&gt;`.
/// </summary>
[EditorIcon("atom-icon-cherry")]
[CreateAssetMenu(menuName = "Unity Atoms/Events/BoolPair", fileName = "BoolPairEvent")]
public sealed class BoolPairEvent : AtomEvent<BoolPair>
{
}
2020-03-02 02:26:06 +01:00
}