using System.Collections; using System.Collections.Generic; using UnityEngine; public class test { private List<Vector2> m_vector2s = new List<Vector2>(); public test(Vector2[] vector2s) { m_vector2s = new List<Vector2>(vector2s); } }