Files
funnygame/public/tier3/lexer.h
2026-01-16 13:32:36 +02:00

19 lines
249 B
C++

#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