mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 09:08:23 -05:00
23 lines
694 B
C#
23 lines
694 B
C#
using System;
|
|
|
|
namespace UnityAtoms
|
|
{
|
|
/// <summary>
|
|
/// Reference of type `int`. Inherits from `EquatableAtomReference<int, IntConstant, IntVariable, IntEvent, IntIntEvent, IntIntFunction, IntVariableInstancer>`.
|
|
/// </summary>
|
|
[Serializable]
|
|
public sealed class IntReference : EquatableAtomReference<
|
|
int,
|
|
IntConstant,
|
|
IntVariable,
|
|
IntEvent,
|
|
IntIntEvent,
|
|
IntIntFunction,
|
|
IntVariableInstancer>, IEquatable<IntReference>
|
|
{
|
|
public IntReference() : base() { }
|
|
public IntReference(int value) : base(value) { }
|
|
public bool Equals(IntReference other) { return base.Equals(other); }
|
|
}
|
|
}
|