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

21 lines
603 B
C#

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