2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-09-02 23:17:26 +00:00
Files
OpenAssetTools/src/ZoneCodeGeneratorNew/Parsing/Commands/Impl/CommandsLexer.cpp
2021-02-10 14:21:58 +01:00

12 lines
224 B
C++

#include "CommandsLexer.h"
CommandsLexer::CommandsLexer(IParserLineStream* stream)
: AbstractLexer(stream)
{
}
CommandsParserValue CommandsLexer::GetNextToken()
{
return CommandsParserValue::Invalid(TokenPos());
}