unity-atoms/Packages/Core/Runtime/References/BoolReference.cs
2019-10-01 17:27:22 +02:00

10 lines
154 B
C#

using System;
namespace UnityAtoms
{
[Serializable]
public sealed class BoolReference : AtomReference<
bool,
BoolVariable> { }
}