1. 首页
  2. 编程语言
  3. Java
  4. 贪食蛇 Jave me 源代码

贪食蛇 Jave me 源代码

上传者: 2021-04-23 06:28:18上传 APPLICATION/X-RAR文件 690KB 热度 11次
/** * 游戏主界面 */ public class NormalGame extends Canvas implements Runnable{ private Image image; //背景图片 private int imgX,imgY; //背景图片的坐标 private int[][] snake = new int[200][2]; //存储贪吃蛇节点坐标的二维数组0-X,1-Y private int snakeL; //蛇的长度 Random random = new Random();
下载地址
用户评论
码姐姐匿名网友 2025-03-26 02:54:39

用起来挺好。