Adam Ramberg c3bc59259f More WIP
2020-03-02 02:26:06 +01:00

12 lines
362 B
C#

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> { }
}