NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Area/Data/EventDataRoadLine.cs

17 lines
233 B
C#

using System.Collections.Generic;
namespace Gameplay.Area
{
using Character;
using UnityEngine;
public class EventDataRoadLine
{
public Character owner;
public List<Vector3> pointList;
}
}