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

13 lines
206 B
C++

#pragma once
class ServerInfo
{
public:
ServerInfo(void);
virtual ~ServerInfo(void);
public:
virtual void LoadScript( CString strFilePath ) = 0;
virtual void SaveScript( CString strFilePath ) = 0;
};