15 lines
255 B
C++
15 lines
255 B
C++
#pragma once
|
|
|
|
#include "Script.h"
|
|
|
|
class DBProxyScript : public Script
|
|
{
|
|
public:
|
|
DBProxyScript(void);
|
|
~DBProxyScript(void);
|
|
|
|
public:
|
|
virtual BOOL Create( CString& strFilePath, _BaseInfo* pBaseInfo, WORLD_LIST& WorldList );
|
|
void CreateContents();
|
|
};
|