17 lines
348 B
C++
17 lines
348 B
C++
#pragma once
|
|
|
|
#include "Script.h"
|
|
|
|
class MasterServerScript : public Script
|
|
{
|
|
public:
|
|
MasterServerScript(void);
|
|
~MasterServerScript(void);
|
|
|
|
public:
|
|
virtual BOOL Create( CString& strFilePath, _BaseInfo* pBaseInfo, WORLD_LIST& WorldList );
|
|
void CreateServerInfo( _BaseInfo* pBaseInfo );
|
|
void CreateNoWorldInfo();
|
|
void CreateLogInfo();
|
|
};
|