mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 06:19:22 +00:00
11 lines
No EOL
224 B
C#
11 lines
No EOL
224 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;
|
|
} |