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

17 lines
233 B
C#
Raw Normal View History

2023-12-12 12:49:49 +08:00
using System.Collections.Generic;
2023-08-22 19:08:45 +08:00
namespace Gameplay.Area
{
using Character;
using UnityEngine;
public class EventDataRoadLine
{
public Character owner;
public List<Vector3> pointList;
}
}