1
Fork 0
slime-blood-and-pain/Assets/Scripts/TurnHandler.cs
2019-04-28 14:11:21 +02:00

24 lines
No EOL
646 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class TurnHandler : MonoBehaviour
{
public void OnTurn() {
AI[] ais = gameObject.GetComponentsInChildren<AI>();
foreach(AI ai in ais) {
ai.OnTurn();
}
}
public List<Entity> GetEntityAtPosition(Vector2Int position) {
Entity[] entities = GetComponentsInChildren<Entity>();
List<Entity> found = new List<Entity>();
foreach(Entity entity in entities) {
if(entity.MapPosition == position) {
found.Add(entity);
}
}
return found;
}
}