资源简介

双人枪战.cpp 一款枪战游戏,双人。 玩家一:wasd移动,空格发射子弹 玩家二:↑↓←→移动,0发射子弹

资源截图

代码片段和文件信息

//单机版枪战游戏,喜欢就拿走,把赞留下
//by floatiy

#include
#include
#include
#include
using namespace std;
int SIZ = 20;
HANDLE hout=GetStdHandle(STD_OUTPUT_HANDLE);
COORD coord;

HANDLE hCon;
enum Color { DARKBLUE = 1 DARKGREEN DARKTEAL DARKRED DARKPINK DARKYELLOW GRAY DARKGRAY BLUE GREEN TEAL RED PINK YELLOW WHITE };
void SetColor(Color c) {
if(hCon == NULL)
hCon = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleTextAttribute(hCon c);
}

SYSTEMTIME sys;

//sys.wYearsys.wMonthsys.wDaysys.wHoursys.wMinute sys.wSecondsys.wMillisecondssys.wDayOfWeek
struct Player {
int xy;
int hp;
int gun;
int direct;
} p1p2;
int map[1005][1005];

int abs(int x) {
if(x < 0) return -x;
return x;
}

void locate(int xint y)

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        8590  2020-01-13 13:07  双人枪战.cpp

评论

共有 条评论