mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 16:45:44 +00:00
13 lines
286 B
C++
13 lines
286 B
C++
#pragma once
|
|
|
|
#include "Parsing/Commands/Impl/CommandsParser.h"
|
|
|
|
class SequenceAction final : public CommandsParser::sequence_t
|
|
{
|
|
public:
|
|
SequenceAction();
|
|
|
|
protected:
|
|
void ProcessMatch(CommandsParserState* state, SequenceResult<CommandsParserValue>& result) const override;
|
|
};
|