mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 00:58:59 -05:00
23 lines
719 B
C#
23 lines
719 B
C#
using System;
|
|
|
|
namespace UnityAtoms
|
|
{
|
|
/// <summary>
|
|
/// Reference of type `bool`. Inherits from `EquatableAtomReference<bool, BoolConstant, BoolVariable, BoolEvent, BoolBoolEvent, BoolBoolFunction, BoolVariableInstancer>`.
|
|
/// </summary>
|
|
[Serializable]
|
|
public sealed class BoolReference : EquatableAtomReference<
|
|
bool,
|
|
BoolConstant,
|
|
BoolVariable,
|
|
BoolEvent,
|
|
BoolBoolEvent,
|
|
BoolBoolFunction,
|
|
BoolVariableInstancer>, IEquatable<BoolReference>
|
|
{
|
|
public BoolReference() : base() { }
|
|
public BoolReference(bool value) : base(value) { }
|
|
public bool Equals(BoolReference other) { return base.Equals(other); }
|
|
}
|
|
}
|