91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介

java小游戲——森林冰火人,單人游戲, 實現人物行走,跳躍,吃水晶,具有計時功能,積分功能,倒計時結束游戲失敗。

資源截圖

代碼片段和文件信息

package?game;

import?java.awt.event.ActionEvent;
import?java.awt.event.ActionListener;

import?javax.swing.ImageIcon;
import?javax.swing.JButton;
import?javax.swing.Jframe;
import?javax.swing.JLabel;
import?javax.swing.JPanel;

public?class?Help?extends?Jframe?implements?ActionListener{
JPanel?helpBack;
JButton?jbu;
int?x=380y=340;
Help(){
super(“操作說明“);
setLayout(null);
hSub();
this.setBounds(750?300?x?y);
this.setVisible(true);
this.setResizable(false);
this.setDefaultCloseOperation(DISPOSE_ON_CLOSE);
}
//顯示一個幫助窗口界面
private?void?hSub()?{
helpBack=new?JPanel();
helpBack.setOpaque(true);
JLabel?hlab=new?JLabel(new?ImageIcon(“./src/hePicture/操作說明.jpg“));
//創建一張帶圖片的Lable
helpBack.setBounds(0?0xy);
hlab.setBounds(0?0xy);
jbu=new?JButton(“返回“);
jbu.setBounds(150?250?60?40);
jbu.addActionListener(this);
hlab.add(jbu);
helpBack.add(hlab);
this.add(helpBack);
}
public?void?actionPerformed(ActionEvent?e)?{
if(e.getSource()==jbu)?{
new?Logon();
dispose();
}
}
}

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件?????????301??2019-12-16?11:36??森林冰火人單人版\.classpath
?????文件?????????400??2019-12-16?11:36??森林冰火人單人版\.project
?????目錄???????????0??2019-12-16?11:41??森林冰火人單人版\.settings\
?????文件?????????598??2019-12-16?11:36??森林冰火人單人版\.settings\org.eclipse.jdt.core.prefs
?????目錄???????????0??2019-12-16?11:41??森林冰火人單人版\bin\
?????目錄???????????0??2019-12-16?11:41??森林冰火人單人版\bin\game\
?????文件????????1748??2019-12-16?11:40??森林冰火人單人版\bin\game\Help.class
?????文件????????2584??2019-12-16?11:40??森林冰火人單人版\bin\game\Logon.class
?????文件?????????396??2019-12-16?11:40??森林冰火人單人版\bin\game\Main.class
?????文件????????1115??2019-12-16?11:40??森林冰火人單人版\bin\game\Mykey.class
?????文件????????5634??2019-12-16?11:40??森林冰火人單人版\bin\game\People.class
?????文件????????1420??2019-12-16?11:40??森林冰火人單人版\bin\game\Play$TimeThread.class
?????文件????????4754??2019-12-16?11:40??森林冰火人單人版\bin\game\Play.class
?????目錄???????????0??2019-12-16?11:41??森林冰火人單人版\bin\hePicture\
?????文件???????56671??2019-12-16?11:36??森林冰火人單人版\bin\hePicture\操作說明.jpg
?????目錄???????????0??2019-12-16?11:41??森林冰火人單人版\bin\lePicture\
?????文件??????188966??2019-12-16?11:36??森林冰火人單人版\bin\lePicture\排行榜.jpg
?????文件????????2516??2019-12-16?11:36??森林冰火人單人版\bin\lePicture\排行榜按鈕.jpg
?????目錄???????????0??2019-12-16?11:41??森林冰火人單人版\bin\loPicture\
?????文件???????52022??2019-12-16?11:36??森林冰火人單人版\bin\loPicture\按鈕1.jpg
?????文件???????53190??2019-12-16?11:36??森林冰火人單人版\bin\loPicture\按鈕2.jpg
?????文件???????25087??2019-12-16?11:36??森林冰火人單人版\bin\loPicture\按鈕3.jpg
?????文件???????23823??2019-12-16?11:36??森林冰火人單人版\bin\loPicture\按鈕4.jpg
?????文件??????515069??2019-12-16?11:36??森林冰火人單人版\bin\loPicture\登錄窗口.jpg
?????目錄???????????0??2019-12-16?11:41??森林冰火人單人版\bin\plPicture\
?????文件????????1221??2019-12-16?11:36??森林冰火人單人版\bin\plPicture\火門.jpg
?????文件????????1307??2019-12-16?11:36??森林冰火人單人版\bin\plPicture\火鉆石.jpg
?????文件?????????927??2019-12-16?11:36??森林冰火人單人版\bin\plPicture\控制按鈕1.jpg
?????文件????????1106??2019-12-16?11:36??森林冰火人單人版\bin\plPicture\木板.jpg
?????文件????????1222??2019-12-16?11:36??森林冰火人單人版\bin\plPicture\水門.jpg
?????文件????????1179??2019-12-16?11:36??森林冰火人單人版\bin\plPicture\水鉆石.jpg
............此處省略62個文件信息

評論

共有 條評論