mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-09-11 16:37:06 +00:00
Recognize script numeric and int values as strings
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
#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();
|
||||
};
|
||||
Reference in New Issue
Block a user