using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[Serializable]
public class PosInfo{
public Vector3 targetPos, targetRotate;
}
public class Test : MonoBehaviour
{
public List<PosInfo> targetPos;
}