public PoeItemParser(IItemLexicon itemLexicon, IModParserCollection modParserCollection, string gameItemText)
        {
            _itemLexicon         = itemLexicon;
            _modParserCollection = modParserCollection;

            _gameText = new GameText(gameItemText);
        }
Example #2
0
 public PoeItemFactory(IItemLexicon itemLexicon, IModParserCollection modParsers)
 {
     _itemLexicon = itemLexicon;
     _modParsers  = modParsers;
 }