Parse game and block commands

This commit is contained in:
Jan
2021-02-19 10:03:34 +01:00
parent 2747e1f0f2
commit 1264be4274
11 changed files with 177 additions and 5 deletions
@@ -17,7 +17,7 @@
#include "Parsing/Commands/Sequence/SequenceUse.h"
CommandsParser::CommandsParser(CommandsLexer* lexer, IDataRepository* targetRepository)
: AbstractParser(lexer, std::make_unique<CommandsParserState>()),
: AbstractParser(lexer, std::make_unique<CommandsParserState>(targetRepository)),
m_repository(targetRepository)
{
}