using System; using System.Collections.Generic; using CleverCrow.Fluid.BTs.Trees; using UnityEngine; using UnityEngine.Timeline; namespace Game { public interface IAIEntity { void Reset(GameEntity entity); } public partial class AIEntityBase : AIObjectBase, IAIEntity where T : new() { private GameEntity _entity; public void Reset(GameEntity entity) { _entity = entity; } } }