首页>代码>java swing开发贪吃蛇小游戏源码>/贪食蛇/src/tanshishe/Food.java
package tanshishe;

import javax.swing.*;
import java.awt.*;

/**
 * 食物类
 * @author 刘艳鹏
 *
 */
public class Food {
	int foodx=(int)(Math.random()*42)*20;
	int foody=(int)(Math.random()*24)*20;

	public Image food1 = new ImageIcon(getClass().getResource("food1.png")).getImage();
	public Image food2 = new ImageIcon(getClass().getResource("food2.png")).getImage();
	public Image food=food1;
	
		public void food(int score){
			if(score%10==0){
				food=food2;
				foodx=(int)(Math.random()*41)*20;
				foody=(int)(Math.random()*23)*20;
			}else{
				food=food1;
				foodx=(int)(Math.random()*42)*20;
				foody=(int)(Math.random()*24)*20;
			}
		}
		public void foodReset(){
			foodx=(int)(Math.random()*42)*20;
			foody=(int)(Math.random()*24)*20;
			food=food1;
		}
}
最近下载更多
yerwiu  LV10 2023年8月13日
tdcq123  LV14 2022年9月4日
daoge123  LV3 2022年5月13日
男友臂  LV1 2020年10月30日
675104182  LV14 2020年9月21日
123456小  LV3 2020年6月13日
ewan007  LV29 2020年4月30日
最代码安逸  LV15 2020年3月9日
zyfuchen  LV8 2019年12月28日
wangxiaorui123  LV2 2019年12月21日
最近浏览更多
zhihong fan  LV2 2023年12月26日
bangyiyang  LV2 2023年12月21日
yerwiu  LV10 2023年8月13日
493240689  LV3 2023年5月11日
huangzy  LV12 2023年4月6日
ftlovelzh 2023年3月17日
暂无贡献等级
舒舒不吃葱花  LV2 2022年11月18日
1014422538  LV1 2022年10月6日
tdcq123  LV14 2022年9月4日
李宜昌  LV5 2022年7月7日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友