Example #1
0
        public EntityAgent(KrisEntityDelegate teamDelegate, Entity entity)
            : base()
        {
            TeamDelegate = teamDelegate;
            Entity = entity;

            WantsObjective = true;
        }
Example #2
0
 public SeekerAgent(KrisEntityDelegate teamDelegate, Entity entity)
     : base(teamDelegate, entity)
 {
 }
Example #3
0
 public FactSheet(KrisEntityDelegate teamDelegate)
 {
     _teamDelegate = teamDelegate;
     entities = new List<SightEntity>();
 }