2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-09-05 00:07:25 +00:00

Add file inclusion for ZCG cpp

This commit is contained in:
Jan
2021-02-10 14:21:58 +01:00
parent 21440daf27
commit d876bc5e25
25 changed files with 779 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
#include "CommandsLexer.h"
CommandsLexer::CommandsLexer(IParserLineStream* stream)
: AbstractLexer(stream)
{
}
CommandsParserValue CommandsLexer::GetNextToken()
{
return CommandsParserValue::Invalid(TokenPos());
}