文件名称:贪吃蛇C C++程序源代码
文件大小:75KB
文件格式:DOC
更新时间:2015-01-05 06:23:54
贪吃蛇
1. //这个是背景的单元格数据结构
2. const length = 40;
3. const width = 20;
4. struct square{
5. bool blocked; //是否有障碍物
6. bool food; //是否有食物
7. int x; //单元格在背景中的相对横坐标
8. int y; //单元格在背景中的相对纵坐标
9. }bg[length][width]; //直接创建游戏背景
10.
。。。。。。。。
#include