mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 00:02:55 +00:00
18 lines
435 B
C++
18 lines
435 B
C++
#pragma once
|
|
|
|
#include "Parsing/Commands/Impl/CommandsParser.h"
|
|
|
|
class SequenceBlock final : public CommandsParser::sequence_t
|
|
{
|
|
static constexpr auto TAG_DEFAULT = 1;
|
|
|
|
static constexpr auto CAPTURE_BLOCK_ENUM_ENTRY = 1;
|
|
static constexpr auto CAPTURE_BLOCK_TYPE = 2;
|
|
|
|
protected:
|
|
void ProcessMatch(CommandsParserState* state, SequenceResult<CommandsParserValue>& result) const override;
|
|
|
|
public:
|
|
SequenceBlock();
|
|
};
|