Files
Sun1602/Tools/SUNAutoScriptMaker/GuildServerScript.h
T
2022-10-26 12:25:11 +08:00

19 lines
447 B
C++

#pragma once
#include "Script.h"
class GuildServerScript : public Script
{
public:
GuildServerScript(void);
~GuildServerScript(void);
public:
BOOL Create( CString& strFilePath, _BaseInfo* pBaseInfo, WORLD_LIST& WorldList );
void CreateCommonInfo( _BaseInfo* pBaseInfo );
void CreateServerInfo( _BaseInfo* pBaseInfo, WORLD_LIST& WorldList );
void CreateConnectInfo( WORLD_LIST& WorldList ); //서버 연결정보
void CreateNoWorldInfo();
};