22 lines
415 B
C#
22 lines
415 B
C#
using System;
|
|
|
|
namespace Streamingle.Utils.RoughConstraints
|
|
{
|
|
[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);
|
|
}
|
|
}
|