unity-atoms/Packages/Core/Runtime/References/BoolReference.cs
2019-10-15 22:23:46 +02:00

13 lines
282 B
C#

using System;
namespace UnityAtoms
{
/// <summary>
/// Reference of type `bool`. Inherits from `AtomReference&lt;bool, BoolVariable&gt;`.
/// </summary>
[Serializable]
public sealed class BoolReference : AtomReference<
bool,
BoolVariable> { }
}