コード例 #1
0
        public EntityAgent(KrisEntityDelegate teamDelegate, Entity entity)
            : base()
        {
            TeamDelegate = teamDelegate;
            Entity = entity;

            WantsObjective = true;
        }
コード例 #2
0
 public SeekerAgent(KrisEntityDelegate teamDelegate, Entity entity)
     : base(teamDelegate, entity)
 {
 }
コード例 #3
0
ファイル: FactSheet.cs プロジェクト: Racura/IntelligentRobots
 public FactSheet(KrisEntityDelegate teamDelegate)
 {
     _teamDelegate = teamDelegate;
     entities = new List<SightEntity>();
 }