NAK_CVR_Mods/CVRGizmos/Gizmo/Element.cs
NotAKidoS 29060f71c1 Initial Upload
it working and not nuking fps... wow
2022-09-14 08:27:23 -05:00

12 lines
No EOL
254 B
C#

using UnityEngine;
namespace Popcron
{
internal class Element
{
public Vector3[] points = { };
public Color color = Color.white;
public bool dashed = false;
public Matrix4x4 matrix = Matrix4x4.identity;
}
}