some improvements i think

This commit is contained in:
2026-01-16 13:32:36 +02:00
parent 49adb21b81
commit c69f589439
16 changed files with 338 additions and 5 deletions

18
public/tier3/lexer.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef BRB_LEXER_H
#define BRB_LEXER_H
#include "tier0/platform.h"
abstract_class ILexerWord
{
public:
virtual int GetType() = 0;
};
abstract_class ILexer
{
public:
virtual ILexerWord *ParseTokens( CUtlVector<Token_t> tokens ) = 0;
};
#endif