mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 08:38:23 -05:00
14 lines
260 B
C#
14 lines
260 B
C#
/// <summary>
|
|
/// Interface defining a generic `IPair<T>`.
|
|
/// </summary>
|
|
namespace UnityAtoms
|
|
{
|
|
public interface IPair<T>
|
|
{
|
|
T Item1 { get; set; }
|
|
T Item2 { get; set; }
|
|
|
|
void Deconstruct(out T item1, out T item2);
|
|
}
|
|
}
|