2020-03-01 20:26:06 -05:00
|
|
|
using System;
|
|
|
|
using UnityAtoms.BaseAtoms;
|
|
|
|
using UnityAtoms.MonoHooks;
|
|
|
|
|
|
|
|
namespace UnityAtoms.MonoHooks
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-03-08 19:37:52 -04:00
|
|
|
/// Reference of type `Collider2DGameObject`. Inherits from `EquatableAtomReference<Collider2DGameObject, Collider2DGameObjectPair, Collider2DGameObjectConstant, Collider2DGameObjectVariable, Collider2DGameObjectEvent, Collider2DGameObjectPairEvent, Collider2DGameObjectCollider2DGameObjectFunction, Collider2DGameObjectVariableInstancer, AtomCollection, AtomList>`.
|
2020-03-01 20:26:06 -05:00
|
|
|
/// </summary>
|
|
|
|
[Serializable]
|
|
|
|
public sealed class Collider2DGameObjectReference : EquatableAtomReference<
|
|
|
|
Collider2DGameObject,
|
|
|
|
Collider2DGameObjectPair,
|
|
|
|
Collider2DGameObjectConstant,
|
|
|
|
Collider2DGameObjectVariable,
|
|
|
|
Collider2DGameObjectEvent,
|
|
|
|
Collider2DGameObjectPairEvent,
|
|
|
|
Collider2DGameObjectCollider2DGameObjectFunction,
|
2020-03-19 03:39:43 -04:00
|
|
|
Collider2DGameObjectVariableInstancer>, IEquatable<Collider2DGameObjectReference>
|
2020-03-01 20:26:06 -05:00
|
|
|
{
|
|
|
|
public Collider2DGameObjectReference() : base() { }
|
|
|
|
public Collider2DGameObjectReference(Collider2DGameObject value) : base(value) { }
|
|
|
|
public bool Equals(Collider2DGameObjectReference other) { return base.Equals(other); }
|
|
|
|
}
|
|
|
|
}
|