mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 16:48:23 -05:00
13 lines
282 B
C#
13 lines
282 B
C#
using System;
|
|
|
|
namespace UnityAtoms
|
|
{
|
|
/// <summary>
|
|
/// Reference of type `bool`. Inherits from `AtomReference<bool, BoolVariable>`.
|
|
/// </summary>
|
|
[Serializable]
|
|
public sealed class BoolReference : AtomReference<
|
|
bool,
|
|
BoolVariable> { }
|
|
}
|