mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-09 03:40:46 +00:00
12 lines
214 B
C#
12 lines
214 B
C#
|
using System;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace Popcron
|
|||
|
{
|
|||
|
internal class Element
|
|||
|
{
|
|||
|
public Vector3[] points = { };
|
|||
|
public Color color = Color.white;
|
|||
|
public bool dashed = false;
|
|||
|
}
|
|||
|
}
|