unity-atoms/Packages/Core/Runtime/References/IntReference.cs
2019-10-15 22:32:06 +02:00

13 lines
276 B
C#

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