22 lines
414 B
C#

using System;
namespace Streamingle.Utils.LerpConstraints
{
[Serializable]
public struct Vector3Bool
{
public bool x;
public bool y;
public bool z;
public Vector3Bool(bool x, bool y, bool z)
{
this.x = x;
this.y = y;
this.z = z;
}
public static Vector3Bool All => new Vector3Bool(true, true, true);
}
}