English
首页
论坛
博客
多用户博客
在线工具
在线手册
开通博客赚积分
发布资源赚积分
分类
源码开发语言/平台
当前位置:
首页
> 源码/资料 >
游戏
> 查看源码
ASSERT.H
资源名称:
Visual_C++GameDevelop.rar [点击查看]
上传用户:
sycq158
上传日期:
2008-10-22
资源大小:
15361k
文件大小:
0k
源码类别:
游戏
开发平台:
Visual C++
ASSERT.H:源码内容
#ifdef DEBUG
#include <iostream.h>
#include <conio.h>
#include <dos.h>
#include "screen.h"
#include "types.h"
extern int raw_key;
#define Assert(X,Y)
if (X) {
setgmode(0x3);
cout << Y;
delay(1000);
raw_key=1;
}
#else
#define Assert(X,Y)
#endif