mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-22 16:18:24 -05:00
21 lines
653 B
C#
21 lines
653 B
C#
using System;
|
|
using UnityEngine;
|
|
namespace UnityAtoms.BaseAtoms
|
|
{
|
|
/// <summary>
|
|
/// IPair of type `<GameObject>`. Inherits from `IPair<GameObject>`.
|
|
/// </summary>
|
|
[Serializable]
|
|
public struct GameObjectPair : IPair<GameObject>
|
|
{
|
|
public GameObject Item1 { get => _item1; set => _item1 = value; }
|
|
public GameObject Item2 { get => _item2; set => _item2 = value; }
|
|
|
|
[SerializeField]
|
|
private GameObject _item1;
|
|
[SerializeField]
|
|
private GameObject _item2;
|
|
|
|
public void Deconstruct(out GameObject item1, out GameObject item2) { item1 = Item1; item2 = Item2; }
|
|
}
|
|
} |