unity-atoms/Packages/MonoHooks/Runtime/Pairs/Collider2DGameObjectPair.cs

22 lines
781 B
C#
Raw Normal View History

2020-03-01 20:26:06 -05:00
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; }
}
}