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