mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 14:29:25 +00:00
12 lines
No EOL
254 B
C#
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;
|
|
}
|
|
} |