17 lines
200 B
C++
17 lines
200 B
C++
#pragma once
|
|
|
|
#include "Parser.h"
|
|
|
|
class GameServerParser : public Parser
|
|
{
|
|
public:
|
|
GameServerParser(void);
|
|
~GameServerParser(void);
|
|
|
|
public:
|
|
virtual BOOL Load( TCHAR* pszFileName );
|
|
|
|
private:
|
|
|
|
};
|