Files
OpenAssetTools/src/ObjLoading/Parsing/Menu/Matcher/MenuMatcherScriptNumeric.h

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();
};