资源简介
一个简单的贪吃蛇游戏
代码片段和文件信息
#include
#include
#include
#include
#include
#include
#include
#define N 22
using namespace std;
int gameover;
int x1 y1;
int xy;
long start;
class snake_position
{
public:
int xy;
snake_position(){};
void initialize(int &);
};
snake_position position[(N-2)*(N-2)+1];
void snake_position::initialize(int &j)
{
x = 1;
y = j;
}
class snake_map
{
private:
char s[N][N];
int grade length;
int gamespeed;
char direction;
int headtail;
int score;
bool gameauto;
public:
snake_map(int h=4int t=1int l=4char d=77int s=0):length(l)direction(d)head
- 上一篇:俄罗斯方块c语言代码
- 下一篇:C语言大程序游戏大富翁
相关资源
- c++ 贪吃蛇代码(.cxx)
- c++ 贪吃蛇大作战
- c++贪吃蛇
- c++ 贪吃蛇 控制台小程序源码
- QT编写的贪吃蛇
- c++实现贪吃蛇
- c++ 贪吃蛇小游戏源码(带关卡、音效
- 贪吃蛇C++基础编写
- 贪吃蛇控制台游戏 游戏学习入门
- c语言贪吃蛇游戏的双人对战版
- vc++游戏 扫雷/连连看/推箱子/拼图/俄
- 贪吃蛇
- c++ 贪吃蛇 游戏(TANKE)
- c++ 贪吃蛇 A0.1
- c++ 贪吃蛇源代码
- c++ 贪吃蛇 小游戏源码
- QT 贪吃蛇 小游戏源码
- c++ 贪吃蛇 小游戏源码(支持难度级别
- c++贪吃蛇 小游戏源码
- 趣味贪吃蛇(c++ 源码)
- qt5 贪吃蛇
- C++贪吃蛇源码,小白专用
- VC贪吃蛇源代码
- VC C语言 贪吃蛇 源码
- C语言贪吃蛇大作战精简版
- C语言 贪吃蛇双人对战版
- C语言课程设计报告 贪吃蛇源程序
- vc6.0 贪吃蛇源代码
- C语言贪吃蛇---cmd窗口操作
- 贪吃蛇的C语言实现使用EasyX图形库
评论
共有 条评论