NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Character/Data/EventDataSpecialAI.cs

13 lines
249 B
C#
Raw Normal View History

2023-08-22 19:08:45 +08:00
using Gameplay.Common;
using System.Collections.Generic;
namespace Gameplay.Character
{
public class EventDataSpecialAI
{
public GameUnit owner;
public List<GameUnit> friendsInOwnerSight;
public uint target;
}
}