• 大小: 0.02M
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-01-29
  • 标签: 打飞机  控制台  游戏  

资源简介

k是发子弹的,

cmd 切换到源码目录,运行g dafeiji.cpp 即可在当前目录生成a.exe,点击该文件可直接打飞机游戏

资源截图

代码片段和文件信息

#include  
#include  
#include  
#include
#include
#include  
#include 
#include  
using namespace std;  
  
/*=============== all the structures ===============*/  
  
typedef struct frame  
{  
    COORD position[2];  
    int flag;  
}frame;  
  
  
/*=============== all the functions ===============*/  
  
void SetPos(COORD a)// set cursor   
{  
    HANDLE out=GetStdHandle(STD_OUTPUT_HANDLE);  
    SetConsoleCursorPosition(out a);  
}  
  
void SetPos(int i int j)// set cursor  
{  
    COORD pos={i j};  
    SetPos(pos);  
}  
  
void HideCursor()  
{  
    CONSOLE_CURSOR_INFO cursor_info = {1 0};   
    SetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE) &cursor_info)

评论

共有 条评论