mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-12-02 01:47:58 +01:00
14 lines
257 B
C#
14 lines
257 B
C#
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace Fie.LevelObject
|
||
|
{
|
||
|
public class FieLevelObjectTracePath : MonoBehaviour
|
||
|
{
|
||
|
[SerializeField]
|
||
|
private List<GameObject> _pathPoints;
|
||
|
|
||
|
public List<GameObject> pathObject => _pathPoints;
|
||
|
}
|
||
|
}
|