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

📄 graph.h

📁 一个简单的RPG实现程序
💻 H
字号:
#if !defined(KANE_RPG_GRAPH_H)
#define KANE_RPG_GRAPH_H

class Graph  
{
public:
	Graph();
	int Init();					//初始化图像
	void Refresh(int time,char *text);		//刷新屏幕
	void Blt(int x,int y,int src_id,int dest_id,int method);
								//会自动剪裁的Blt
	void Restore();				//恢复丢失页面
	virtual ~Graph();

};

#endif

⌨️ 快捷键说明

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