rotoverheadcontroller.h
来自「这是整套横扫千军3D版游戏的源码」· C头文件 代码 · 共 36 行
H
36 行
#ifndef __ROTOH_CONTROLLER_H__
#define __ROTOH_CONTROLLER_H__
#include "CameraController.h"
class CRotOverheadController : public CCameraController
{
public:
CRotOverheadController(int num);
const std::string GetName() const { return "rot"; }
void KeyMove(float3 move);
void MouseMove(float3 move);
void ScreenEdgeMove(float3 move);
void MouseWheelMove(float move);
float3 GetPos();
float3 GetDir();
void SetPos(const float3& newPos);
float3 SwitchFrom() const;
void SwitchTo(bool showText);
void GetState(std::vector<float>& fv) const;
bool SetState(const std::vector<float>& fv);
private:
float oldHeight;
float3 dir;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?