1 Star 0 Fork 0

涛堆堆/GUI实现简单贪吃蛇小游戏

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Data.java 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
LLLT 提交于 2022-04-21 21:49 . 初始化
package com.lt.snake;
import javax.swing.*;
import java.net.URL;
// 数据中心
public class Data {
public static URL headerURL = Data.class.getResource("statics/header.png");
public static URL upURL = Data.class.getResource("statics/up.png");
public static URL downURL = Data.class.getResource("statics/down.png");
public static URL leftURL = Data.class.getResource("statics/left.png");
public static URL rightURL = Data.class.getResource("statics/right.png");
public static URL foodURL = Data.class.getResource("statics/food.png");
public static URL bodyURL = Data.class.getResource("statics/body.png");
public static ImageIcon header = new ImageIcon(headerURL);
public static ImageIcon up = new ImageIcon(upURL);
public static ImageIcon down = new ImageIcon(downURL);
public static ImageIcon left = new ImageIcon(leftURL);
public static ImageIcon right = new ImageIcon(rightURL);
public static ImageIcon food = new ImageIcon(foodURL);
public static ImageIcon body = new ImageIcon(bodyURL);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liao-tao020415/gui.git
git@gitee.com:liao-tao020415/gui.git
liao-tao020415
gui
GUI实现简单贪吃蛇小游戏
master

搜索帮助