script.h

来自「这是整套横扫千军3D版游戏的源码」· C头文件 代码 · 共 29 行

H
29
字号
#ifndef SCRIPT_H
#define SCRIPT_H
// Script.h: interface for the CScript class.
//
//////////////////////////////////////////////////////////////////////

#include "Object.h"
#include <string>

class CScript : public CObject  
{
public:
	virtual void SetCamera();
	virtual void Update();
	virtual void GotChatMsg(const std::string& msg, int player);
	CScript(const std::string& name);
	virtual ~CScript();

	virtual void ScriptSelected();
	virtual std::string GetMapName();
	virtual std::string GetModName();

	bool wantCameraControl;
	bool onlySinglePlayer;
	bool loadGame;
};

#endif /* SCRIPT_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?