Files
Sun1602/Tools/SunUpdateManager/SunUpdateServer/ServerScriptParser.h
T
2022-10-26 12:25:11 +08:00

20 lines
383 B
C++

#pragma once
#include <Singleton.h>
#include <BaseParser.h>
#include "ServerStruct.h"
class ServerScriptParser : public BaseParser, public Singleton<ServerScriptParser>
{
public:
ServerScriptParser(void);
~ServerScriptParser(void);
public:
BOOL Load( const TCHAR* pszFileName );
SERVER_ENV* GetServerEnv(){ return &m_ServerEnv; }
private:
SERVER_ENV m_ServerEnv;
};