using System; using System.Collections.Generic; using UnityEngine; [Serializable] public class line_list_class { public Color color; public bool foldout; public bool point_foldout; public int point_length; public List points; public line_list_class() { color = new Color(1f, 0f, 0f); points = new List(); } }