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
|
|
|
|
}
|