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

11 lines
173 B
C#
Raw Normal View History

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