资源简介

这是一个完整的java贪吃蛇游戏,有六个文件,主函数启动游戏,另外有一个文件food是食物,worm是贪吃蛇,wormstage是管理贪吃蛇运动的文件

资源截图

代码片段和文件信息

package worm;

import java.awt.Color;
//蛇身上每个节点

public class Cell {
private Color color ; //颜色
private int width ; // 宽
private int height ; // 高
private int x ;  //x坐标
private int y ;   // y坐标
private int i ;   // 行号
private int j ;   // 列号

public Cell(int i int j){
this.color = Util.CELL_COLOR ;
this.width = Util.CELL_WIDTH ;
this.height = Util.CELL_HEIGHT ;
this.i = i ; 
this.j = j ;

this.x = j * width ;
this.y = i * height; 
}

public Color getColor() {
return color;
}
public void setColor(Color color) {
this.color = color;
}
public int getWidth() {
return width;
}
public void setWidth(int width) {
this.width = width;
}
public int getHeight() {
return height;
}
public void setHeight(int height) 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1204  2014-08-08 10:54  worm\Cell.java
     文件        1245  2014-08-08 10:49  worm\Food.java
     文件         970  2014-08-08 16:41  worm\Main.java
     文件         444  2014-08-08 14:30  worm\Util.java
     文件        2953  2014-08-08 16:04  worm\Worm.java
     文件        3613  2014-08-08 16:05  worm\WormStage.java
     目录           0  2014-08-24 10:19  worm\

评论

共有 条评论