twcontroller.h

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

H
31
字号
#ifndef __TW_CONTROLLER_H__
#define __TW_CONTROLLER_H__

#include "CameraController.h"


class CTWController : public CCameraController
{
public:
	CTWController(int num);

	const std::string GetName() const { return "tw"; }

	void KeyMove(float3 move);
	void MouseMove(float3 move);
	void ScreenEdgeMove(float3 move);
	void MouseWheelMove(float move);

	float3 GetPos();
	float3 GetDir();

	float3 SwitchFrom() const;
	void SwitchTo(bool showText);

	void GetState(std::vector<float>& fv) const;
	bool SetState(const std::vector<float>& fv);
};


#endif

⌨️ 快捷键说明

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