コード例 #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
ファイル: SentenceFormAdder.cs プロジェクト: druzil/nggp-base
 public SentenceFormAdder(IComponentFactory componentFactory, RelationNameProcessor doesProcessor,
     RelationNameProcessor trueProcessor, GroundFact tempFact)
 {
     _componentFactory = componentFactory;
     _doesProcessor = doesProcessor;
     _trueProcessor = trueProcessor;
     _tempFact = tempFact;
 }