⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 building.h

📁 这个例子告诉你2d Arpg游戏中的动态阴影如何生成
💻 H
字号:
#ifndef BUILDING_H
#define BUILDING_H
#include "Surface.h"

class Building  
{
public:
	void ShowBuilding(POINT view);
	void Init(const char *Filename,int Buildx,int Buildy);
	Building();
	~Building();
private:
	Surface busurface;
	int buildingx;
	int buildingy;
};

#endif // !defined(AFX_BUILDING_H__B55FBC4C_BC39_427E_B562_FFBCFA9727B8__INCLUDED_)

⌨️ 快捷键说明

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