using UnityEngine; namespace Assets.Domain.Agents { public abstract class SimulationAgent { public string Name { get; set; } public string Species { get; set; } public Vector3 Position { get; set; } public bool HasToBeRemoved { get; set; } } }