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