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