using System.Collections.Generic; using UnityEngine; namespace Fie.LevelObject { public class FieLevelObjectTracePath : MonoBehaviour { [SerializeField] private List _pathPoints; public List pathObject => _pathPoints; } }