示例#1
0
文件: Gamer.cs 项目: druzil/nggp-base
        protected Gamer(string gameId, Parser p)
            : base(p)
        {
            GameId = gameId;

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