debug.h

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

H
23
字号
#ifndef DEBUG_H#define DEBUG_H#include "GlobalAI.h"class CDebug {	public:		CDebug(AIClasses* ai);		~CDebug();		void MakeBWTGA(int* array, int xsize, int ysize, string filename, float curve = 1);		void MakeBWTGA(float* array, int xsize, int ysize, string filename, float curve = 1);		void MakeBWTGA(unsigned char* array, int xsize, int ysize, string filename, float curve = 1);		void MakeBWTGA(bool* array, int xsize, int ysize, string filename, float curve = 1);	private:		AIClasses* ai;		void OutputBWTGA(float* array, int xsize, int ysize, string filename, float curve);};#endif

⌨️ 快捷键说明

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