using GameCore.ECS.Interfaces; using GameCore.Math; namespace GameCore.AI; public class PatrolComponent : IComponent { public List PatrolPoints { get; set; } = []; public int CurrentPatrolIndex { get; set; } = 0; public bool IsLooping { get; set; } = false; }