mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-09 22:38:06 -05:00
14 lines
356 B
C++
14 lines
356 B
C++
#pragma once
|
|
|
|
#include "Parsing/Simple/SimpleParserValue.h"
|
|
#include "Parsing/Matcher/AbstractMatcher.h"
|
|
|
|
class MenuMatcherScriptNumeric final : public AbstractMatcher<SimpleParserValue>
|
|
{
|
|
protected:
|
|
MatcherResult<SimpleParserValue> CanMatch(ILexer<SimpleParserValue>* lexer, unsigned tokenOffset) override;
|
|
|
|
public:
|
|
MenuMatcherScriptNumeric();
|
|
};
|