【文件属性】:
文件名称:vc写的坦克大战
文件大小:67KB
文件格式:ZIP
更新时间:2017-12-06 19:10:50
VC 游戏 坦克大战
用VC写的,感兴趣的朋友交流技术之用.部分代码如下:
#include
#include "Game.h"
#include "resource.h"
#define SCREEN_W 640
#define SCREEN_H 480
#define OFFSETX 100
#define OFFSETY 48
#define PLAYER1_STARTX 130
#define PLAYER1_STARTY 386
#define PLAYER2_STARTX 258
#define PLAYER2_STARTY 386
#define SAFE_RELEASE(x) if(x){ x->Release(); x = NULL; }
CGame* g_pGame;
inline int random( int min, int max )
{
return (min + rand() % (max - min + 1));
}
void TRACE( LPCTSTR format, ... )
{
char buf[128];
va_list vl;
va_start(vl, format);
sprintf(buf, format, vl);
OutputDebugString( buf );
va_end(vl);
}