using System.Collections.Generic; using UnityEngine; public class Rope { public List points { get ; private set; } public List sticks { get; private set; } public Rope(List points, List sticks) { this.points = points; this.sticks = sticks; } }