使用c++制作简单的横板射击小游戏,供大家参考,具体内容如下
#include
#include
#include
class Bullet;
class Tank;
class E_Bullet;
class Boss;
bool dead = false;
bool wined = false;
struct pos//坐标类
{
int a;
int b;
};
class E_Bullet//敌人打出的子弹
{
public:
clock_t d;
int x;
int y;
bool on = false;
p
2021-08-16 21:16:29
103KB
c++
小游戏
1