unity-atoms/Packages/Core/Runtime/References/IntReference.cs
2019-10-02 17:36:20 +02:00

10 lines
151 B
C#

using System;
namespace UnityAtoms
{
[Serializable]
public sealed class IntReference : AtomReference<
int,
IntVariable> { }
}