quantum-space-buddies/QSB/Utility/Popcron.Gizmos/Element.cs

12 lines
214 B
C#
Raw Normal View History

2021-01-03 12:38:02 +00:00
using System;
using UnityEngine;
namespace Popcron
{
internal class Element
{
public Vector3[] points = { };
public Color color = Color.white;
public bool dashed = false;
}
}