예제 #1
0
        public Dictionary <string, List <GameAgent> > GetAgents(GameWorld world)
        {
            Dictionary <string, List <GameAgent> > result = Selector(world);

            return(result);
        }
예제 #2
0
 public bool IsValid(GameWorld w)
 {
     return Selector != null ? ValidCondition(Selector.GetAgents(w), w) : ValidCondition(null, w);
 }