15 lines
312 B
C#
15 lines
312 B
C#
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class Rope
|
||
|
{
|
||
|
public List<Point> points { get ; private set; }
|
||
|
public List<Stick> sticks { get; private set; }
|
||
|
|
||
|
public Rope(List<Point> points, List<Stick> sticks)
|
||
|
{
|
||
|
this.points = points;
|
||
|
this.sticks = sticks;
|
||
|
}
|
||
|
}
|