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,13 @@
#pragma once
#include "CommandsParserValue.h"
#include "Parsing/AbstractLexer.h"
class CommandsLexer final : public AbstractLexer<CommandsParserValue>
{
protected:
CommandsParserValue GetNextToken() override;
public:
explicit CommandsLexer(IParserLineStream* stream);
};