mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-22 16:18:24 -05:00
21 lines
603 B
C#
21 lines
603 B
C#
using System;
|
|
using UnityEngine;
|
|
namespace UnityAtoms.BaseAtoms
|
|
{
|
|
/// <summary>
|
|
/// IPair of type `<float>`. Inherits from `IPair<float>`.
|
|
/// </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; }
|
|
}
|
|
} |