test.cs 243 B

12345678910
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class test {
  5. private List<Vector2> m_vector2s = new List<Vector2>();
  6. public test(Vector2[] vector2s) {
  7. m_vector2s = new List<Vector2>(vector2s);
  8. }
  9. }