unity-atoms/Packages/MonoHooks/Runtime/Pairs/Collider2DGameObjectPair.cs
Adam Ramberg c3bc59259f More WIP
2020-03-02 02:26:06 +01:00

22 lines
781 B
C#

using System;
using UnityEngine;
using UnityAtoms.MonoHooks;
namespace UnityAtoms.MonoHooks
{
/// <summary>
/// IPair of type `&lt;Collider2DGameObject&gt;`. Inherits from `IPair&lt;Collider2DGameObject&gt;`.
/// </summary>
[Serializable]
public struct Collider2DGameObjectPair : IPair<Collider2DGameObject>
{
public Collider2DGameObject Item1 { get => _item1; set => _item1 = value; }
public Collider2DGameObject Item2 { get => _item2; set => _item2 = value; }
[SerializeField]
private Collider2DGameObject _item1;
[SerializeField]
private Collider2DGameObject _item2;
public void Deconstruct(out Collider2DGameObject item1, out Collider2DGameObject item2) { item1 = Item1; item2 = Item2; }
}
}