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