📄 debug.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -