2020-03-01 20:26:06 -05:00
|
|
|
using System;
|
|
|
|
using UnityAtoms.BaseAtoms;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
namespace UnityAtoms.BaseAtoms
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-03-08 19:37:52 -04:00
|
|
|
/// Reference of type `Vector2`. Inherits from `EquatableAtomReference<Vector2, Vector2Pair, Vector2Constant, Vector2Variable, Vector2Event, Vector2PairEvent, Vector2Vector2Function, Vector2VariableInstancer, AtomCollection, AtomList>`.
|
2020-03-01 20:26:06 -05:00
|
|
|
/// </summary>
|
|
|
|
[Serializable]
|
|
|
|
public sealed class Vector2Reference : EquatableAtomReference<
|
|
|
|
Vector2,
|
|
|
|
Vector2Pair,
|
|
|
|
Vector2Constant,
|
|
|
|
Vector2Variable,
|
|
|
|
Vector2Event,
|
|
|
|
Vector2PairEvent,
|
|
|
|
Vector2Vector2Function,
|
2020-03-19 03:39:43 -04:00
|
|
|
Vector2VariableInstancer>, IEquatable<Vector2Reference>
|
2020-03-01 20:26:06 -05:00
|
|
|
{
|
|
|
|
public Vector2Reference() : base() { }
|
|
|
|
public Vector2Reference(Vector2 value) : base(value) { }
|
|
|
|
public bool Equals(Vector2Reference other) { return base.Equals(other); }
|
|
|
|
}
|
|
|
|
}
|