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