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