Esempio n. 1
0
        protected Gamer(string gameId, Parser p)
            : base(p)
        {
            GameId = gameId;

            DoesProcessor = new RelationNameProcessor("does", SymbolTable);
            TrueProcessor = new RelationNameProcessor(Parser.TokTrue);
        }
Esempio n. 2
0
 public SentenceFormAdder(IComponentFactory componentFactory, RelationNameProcessor doesProcessor,
     RelationNameProcessor trueProcessor, GroundFact tempFact)
 {
     _componentFactory = componentFactory;
     _doesProcessor = doesProcessor;
     _trueProcessor = trueProcessor;
     _tempFact = tempFact;
 }