unity-atoms/Packages/Core/Runtime/References/BoolReference.cs
AdamRamberg 299dc195e2 - Added a top menu bar option to regenerate all existing Atoms. Nifty when developing the library.
- Added the option to use a Constant in Atom References. Related to #58
2019-10-16 18:02:08 +02:00

14 lines
318 B
C#

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