首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

Java small game (Java桌面版小游戏)

后端 15.51MB 10 需要积分: 1
立即下载

资源介绍:

Java small game (Java桌面版小游戏)
package cn.edu.tlu; import java.awt.Font; import java.awt.GridLayout; import java.awt.MenuBar; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.MouseEvent; import java.awt.event.MouseListener; import java.text.DecimalFormat; import javax.swing.ImageIcon; import javax.swing.JButton; import javax.swing.JCheckBoxMenuItem; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JMenu; import javax.swing.JMenuBar; import javax.swing.JOptionPane; import javax.swing.JPanel; import cn.edu.tlu.common.Utils; /** * 扫雷主窗体 * @author G * */ public class MyFrame extends JFrame implements ActionListener,Runnable,MouseListener{ private JLabel mainLab; // 主窗体 private JLabel bar; // 图标 private int mineNum; // 地雷计数器 private int startMineNum; // 初始地雷数 private JLabel timeLab,mineLab; // 时间 和 地雷 private JButton flush,min,close; private JButton style1,style2,style3; private long start; private int row, col; // 行数列数 private Mine[][] mines; // 地雷按钮数组 private JPanel jp; // 放地雷的面板 private int left,up; // 面板在窗体上的位置 public static final int MINE_SIZE = 22; // 存放不同风格的图片 private ImageIcon[] mainLabs = {new ImageIcon("./img/back.png"),new ImageIcon("./img/style2/back.png"),new ImageIcon("./img/style3/back.png")}; private ImageIcon[] style1s = {new ImageIcon("./img/style1.png"),new ImageIcon("./img/style2/style1.png"),new ImageIcon("./img/style3/style1.png")}; private ImageIcon[] style2s = {new ImageIcon("./img/style2.png"),new ImageIcon("./img/style2/style2.png"),new ImageIcon("./img/style3/style2.png")}; private ImageIcon[] style3s = {new ImageIcon("./img/style3.png"),new ImageIcon("./img/style2/style3.png"),new ImageIcon("./img/style3/style3.png")}; private ImageIcon[] btn_backs = {new ImageIcon("./img/but_back.png"),new ImageIcon("./img/style2/but_back.png"),new ImageIcon("./img/style3/but_back.png")}; private ImageIcon[] btn_opens = {new ImageIcon("./img/btn_open.png"),new ImageIcon("./img/style2/btn_open.png"),new ImageIcon("./img/style3/btn_open.png")}; private ImageIcon[] btn_flags = {new ImageIcon("./img/hongqi.png"),new ImageIcon("./img/style2/hongqi.png"),new ImageIcon("./img/style3/hongqi.png")}; private int index = 0; /* 添加菜单项 **/ private JMenuBar menuBar; private JMenu menu; private JCheckBoxMenuItem easy,normal,hard; public MyFrame(int startMineNum ,int row, int col ,int left ,int up) { // 初始化 mainLab = new JLabel(mainLabs[index]); style1 = new JButton(style1s[index]); style2 = new JButton(style2s[index]); style3 = new JButton(style3s[index]); bar = new JLabel(new ImageIcon("./img/bar.png")); flush = new JButton(new ImageIcon("./img/flush.png")); min = new JButton(new ImageIcon("./img/min.png")); close = new JButton(new ImageIcon("./img/close.png")); this.startMineNum = startMineNum; // 初始雷数量 mineNum = startMineNum; // 雷计数器 timeLab = new JLabel("00:00"); mineLab = new JLabel(mineNum+""); this.row = row; // 19 this.col = col; // 15 this.left = left; // 85 this.up = up; // 100 mines = new Mine[row][col]; // 设置面板对象 jp = getMinePanel(); // 设置菜单栏 menuBar = getMyMenuBar(); // 组装窗体 init(); // 注册监听器 addEventHandler(); // 窗体添加鼠标拖拽功能 Utils.setFrameDrag(this); Utils.initFrame(this); } /** 生成菜单栏 **/ private JMenuBar getMyMenuBar() { JMenuBar m = new JMenuBar(); m.setOpaque(false); // 不透明 m.setBorderPainted(false); // 不绘制边框 menu = new JMenu(); menu.setIcon(new ImageIcon("./img/bar.png")); m.add(menu); easy = new JCheckBoxMenuItem("初级",new ImageIcon("./img/1.gif")); normal = new JCheckBoxMenuItem("中级",new ImageIcon("./img/2.gif")); hard = new JCheckBoxMenuItem("高级",new ImageIcon("./img/3.gif")); menu.add(easy); menu.add(normal); menu.add(hard); return m; } /** 生成地雷面板 **/ private JPanel getMinePanel() { JPanel jp = new JPanel(); // 设置网格布局管理器 jp.setLayout(new GridLayout(row, col)); // 创建地雷按钮,添加到数组,面板中 for (int i = 0; i < row; i++) { for (int j = 0; j < col; j++) { mines[i][j] = new Mine(i, j); mines[i][j].setIcon(btn_backs[index]); mines[i][j].addMouseListener(this); jp.add(mines[i][j]); } } // 随机设置地雷 layMines(); // 设置每个按钮的周围地雷数 for (int i = 0; i < row; i++) { for (int j = 0; j < col; j++) { if (mines[i][j].getValue()==0) { mines[i][j].setValue(calMineNum(i,j)); } } } // 测试 for (int j = 0; j < row; j++) { for (int k = 0; k < col; k++) { System.out.print(mines[j][k].getValue()>=0?" "+mines[j][k].getValue():" "+mines[j][k].getValue()); } System.out.println(); } return jp; } /** 放地雷 **/ private void layMines() { for (int i = 0; i < mineNum; i++) { int ii = (int)(Math.random() * row); int jj = (int)(Math.random() * col); if (mines[ii][jj].getValue() == -1) { i--; continue; } mines[ii][jj].setValue(-1); } } /** 计算周围的地雷数量 **/ private int calMineNum(int i,int j) { int num = 0; for (int k = i-1; k <= i+1; k++) { for (int k2 = j-1; k2 <= j+1; k2++) { if ( k>=0 && k2>=0 && k

资源文件列表:

SmallGame-master.zip 大约有814个文件
  1. SmallGame-master/MyBall/
  2. SmallGame-master/MyBall/.classpath 295B
  3. SmallGame-master/MyBall/.gitignore 6B
  4. SmallGame-master/MyBall/.project 365B
  5. SmallGame-master/MyBall/.settings/
  6. SmallGame-master/MyBall/.settings/org.eclipse.jdt.core.prefs 587B
  7. SmallGame-master/MyBall/src/
  8. SmallGame-master/MyBall/src/cn/
  9. SmallGame-master/MyBall/src/cn/edu/
  10. SmallGame-master/MyBall/src/cn/edu/tlu/
  11. SmallGame-master/MyBall/src/cn/edu/tlu/ball/
  12. SmallGame-master/MyBall/src/cn/edu/tlu/ball/MyBall.java 385B
  13. SmallGame-master/MyBall/src/cn/edu/tlu/ball/MyBallPanel.java 2.7KB
  14. SmallGame-master/MyBall/src/cn/edu/tlu/common/
  15. SmallGame-master/MyBall/src/cn/edu/tlu/common/Utils.java 742B
  16. SmallGame-master/MyStar/
  17. SmallGame-master/MyStar/.classpath 295B
  18. SmallGame-master/MyStar/.gitignore 6B
  19. SmallGame-master/MyStar/.project 365B
  20. SmallGame-master/MyStar/.settings/
  21. SmallGame-master/MyStar/.settings/org.eclipse.jdt.core.prefs 587B
  22. SmallGame-master/MyStar/src/
  23. SmallGame-master/MyStar/src/cn/
  24. SmallGame-master/MyStar/src/cn/edu/
  25. SmallGame-master/MyStar/src/cn/edu/tlu/
  26. SmallGame-master/MyStar/src/cn/edu/tlu/common/
  27. SmallGame-master/MyStar/src/cn/edu/tlu/common/Utils.java 748B
  28. SmallGame-master/MyStar/src/cn/edu/tlu/star/
  29. SmallGame-master/MyStar/src/cn/edu/tlu/star/MyStar.java 413B
  30. SmallGame-master/MyStar/src/cn/edu/tlu/star/MyStarPanel.java 640B
  31. SmallGame-master/MyStar/src/cn/edu/tlu/stars/
  32. SmallGame-master/MyStar/src/cn/edu/tlu/stars/MyStars.java 439B
  33. SmallGame-master/MyStar/src/cn/edu/tlu/stars/MyStarsPanel.java 1.52KB
  34. SmallGame-master/MyTom/
  35. SmallGame-master/MyTom/.classpath 295B
  36. SmallGame-master/MyTom/.gitignore 6B
  37. SmallGame-master/MyTom/.project 364B
  38. SmallGame-master/MyTom/.settings/
  39. SmallGame-master/MyTom/.settings/org.eclipse.jdt.core.prefs 587B
  40. SmallGame-master/MyTom/src/
  41. SmallGame-master/MyTom/src/cn/
  42. SmallGame-master/MyTom/src/cn/edu/
  43. SmallGame-master/MyTom/src/cn/edu/tlu/
  44. SmallGame-master/MyTom/src/cn/edu/tlu/common/
  45. SmallGame-master/MyTom/src/cn/edu/tlu/common/Utils.java 745B
  46. SmallGame-master/MyTom/src/cn/edu/tlu/img/
  47. SmallGame-master/MyTom/src/cn/edu/tlu/img/.DS_Store 10KB
  48. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/
  49. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/.DS_Store 6KB
  50. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/
  51. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_00.jpg 32.19KB
  52. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_01.jpg 32.29KB
  53. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_02.jpg 32.3KB
  54. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_03.jpg 32.32KB
  55. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_04.jpg 32.37KB
  56. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_05.jpg 32.39KB
  57. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_06.jpg 32.31KB
  58. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_07.jpg 32.08KB
  59. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_08.jpg 32.15KB
  60. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_09.jpg 32.13KB
  61. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_10.jpg 32.1KB
  62. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_11.jpg 32.33KB
  63. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_12.jpg 32.09KB
  64. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_13.jpg 32.04KB
  65. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_14.jpg 32.04KB
  66. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_15.jpg 31.98KB
  67. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_16.jpg 31.96KB
  68. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_17.jpg 31.95KB
  69. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_18.jpg 31.49KB
  70. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_19.jpg 31.58KB
  71. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_20.jpg 32.17KB
  72. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_21.jpg 32.3KB
  73. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_22.jpg 32.34KB
  74. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_23.jpg 32.3KB
  75. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_24.jpg 32.41KB
  76. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Angry/angry_25.jpg 32.22KB
  77. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Cymbal/
  78. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Cymbal/cymbal_00.jpg 32.99KB
  79. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Cymbal/cymbal_01.jpg 32.76KB
  80. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Cymbal/cymbal_02.jpg 33.24KB
  81. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Cymbal/cymbal_03.jpg 33.55KB
  82. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Cymbal/cymbal_04.jpg 33.74KB
  83. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Cymbal/cymbal_05.jpg 34KB
  84. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Cymbal/cymbal_06.jpg 33.96KB
  85. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Cymbal/cymbal_07.jpg 34KB
  86. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Cymbal/cymbal_08.jpg 33.95KB
  87. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Cymbal/cymbal_09.jpg 33.87KB
  88. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Cymbal/cymbal_10.jpg 32.98KB
  89. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Cymbal/cymbal_11.jpg 33.05KB
  90. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Cymbal/cymbal_12.jpg 32.99KB
  91. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/
  92. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_00.jpg 32.19KB
  93. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_01.jpg 32.1KB
  94. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_02.jpg 32.08KB
  95. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_03.jpg 32.12KB
  96. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_04.jpg 32.02KB
  97. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_05.jpg 32.02KB
  98. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_06.jpg 31.94KB
  99. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_07.jpg 31.97KB
  100. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_08.jpg 31.94KB
  101. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_09.jpg 31.96KB
  102. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_10.jpg 31.95KB
  103. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_11.jpg 33.42KB
  104. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_12.jpg 33.68KB
  105. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_13.jpg 33.81KB
  106. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_14.jpg 33.82KB
  107. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_15.jpg 33.86KB
  108. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_16.jpg 34.16KB
  109. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_17.jpg 34.21KB
  110. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_18.jpg 34.35KB
  111. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_19.jpg 34.47KB
  112. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_20.jpg 34.52KB
  113. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_21.jpg 34.48KB
  114. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_22.jpg 34.54KB
  115. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_23.jpg 34.54KB
  116. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_24.jpg 34.42KB
  117. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_25.jpg 34.25KB
  118. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_26.jpg 34.17KB
  119. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_27.jpg 34.2KB
  120. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_28.jpg 34.28KB
  121. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_29.jpg 34.14KB
  122. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_30.jpg 32.02KB
  123. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_31.jpg 32.22KB
  124. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_32.jpg 32.59KB
  125. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_33.jpg 32.09KB
  126. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_34.jpg 31.99KB
  127. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_35.jpg 31.76KB
  128. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_36.jpg 31.62KB
  129. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_37.jpg 31.58KB
  130. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_38.jpg 31.54KB
  131. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_39.jpg 31.51KB
  132. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_40.jpg 31.51KB
  133. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_41.jpg 31.58KB
  134. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_42.jpg 31.58KB
  135. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_43.jpg 31.62KB
  136. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_44.jpg 31.61KB
  137. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_45.jpg 31.63KB
  138. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_46.jpg 31.73KB
  139. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_47.jpg 31.93KB
  140. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_48.jpg 32.2KB
  141. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_49.jpg 32.37KB
  142. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_50.jpg 32.54KB
  143. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_51.jpg 32.66KB
  144. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_52.jpg 32.55KB
  145. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_53.jpg 32.47KB
  146. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_54.jpg 32.45KB
  147. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_55.jpg 32.36KB
  148. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_56.jpg 32.04KB
  149. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_57.jpg 31.38KB
  150. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_58.jpg 31.36KB
  151. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_59.jpg 31.54KB
  152. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_60.jpg 31.84KB
  153. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_61.jpg 32.11KB
  154. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_62.jpg 31.93KB
  155. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_63.jpg 31.36KB
  156. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_64.jpg 31.22KB
  157. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_65.jpg 31.33KB
  158. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_66.jpg 31.55KB
  159. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_67.jpg 31.78KB
  160. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_68.jpg 32.14KB
  161. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_69.jpg 32.19KB
  162. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_70.jpg 32.1KB
  163. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_71.jpg 32.13KB
  164. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_72.jpg 32.18KB
  165. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_73.jpg 31.97KB
  166. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_74.jpg 32.01KB
  167. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_75.jpg 32.06KB
  168. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_76.jpg 32.06KB
  169. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_77.jpg 32.11KB
  170. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_78.jpg 32.07KB
  171. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_79.jpg 32.13KB
  172. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Drink/drink_80.jpg 32.19KB
  173. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/
  174. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/.DS_Store 10KB
  175. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_00.jpg 33.25KB
  176. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_01.jpg 33.34KB
  177. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_02.jpg 33.35KB
  178. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_03.jpg 33.38KB
  179. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_04.jpg 33.43KB
  180. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_05.jpg 33.4KB
  181. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_06.jpg 33.44KB
  182. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_07.jpg 33.47KB
  183. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_08.jpg 33.45KB
  184. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_09.jpg 33.44KB
  185. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_10.jpg 33.43KB
  186. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_11.jpg 33.91KB
  187. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_12.jpg 34.67KB
  188. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_13.jpg 35KB
  189. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_14.jpg 35.18KB
  190. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_15.jpg 34.95KB
  191. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_16.jpg 34.56KB
  192. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_17.jpg 34.64KB
  193. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_18.jpg 34.55KB
  194. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_19.jpg 34.44KB
  195. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_20.jpg 34.44KB
  196. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_21.jpg 34.46KB
  197. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_22.jpg 34.32KB
  198. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_23.jpg 34.31KB
  199. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_24.jpg 34.2KB
  200. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_25.jpg 34.09KB
  201. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_26.jpg 33.98KB
  202. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_27.jpg 34.12KB
  203. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_28.jpg 34.8KB
  204. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_29.jpg 35.35KB
  205. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_30.jpg 35.21KB
  206. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_31.jpg 35.46KB
  207. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_32.jpg 35.13KB
  208. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_33.jpg 33.7KB
  209. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_34.jpg 33.72KB
  210. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_35.jpg 33.71KB
  211. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_36.jpg 33.79KB
  212. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_37.jpg 33.11KB
  213. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_38.jpg 33.53KB
  214. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Eat/eat_39.jpg 33.21KB
  215. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/
  216. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_00.jpg 32.66KB
  217. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_01.jpg 32.41KB
  218. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_02.jpg 32.04KB
  219. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_03.jpg 31.9KB
  220. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_04.jpg 31.77KB
  221. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_05.jpg 31.77KB
  222. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_06.jpg 31.78KB
  223. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_07.jpg 31.9KB
  224. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_08.jpg 32.05KB
  225. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_09.jpg 32.44KB
  226. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_10.jpg 32.63KB
  227. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_11.jpg 32.71KB
  228. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_12.jpg 32.83KB
  229. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_13.jpg 32.79KB
  230. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_14.jpg 32.71KB
  231. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_15.jpg 32.74KB
  232. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_16.jpg 32.74KB
  233. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_17.jpg 32.77KB
  234. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_18.jpg 32.77KB
  235. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_19.jpg 32.06KB
  236. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_20.jpg 32.63KB
  237. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_21.jpg 32.52KB
  238. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_22.jpg 32.46KB
  239. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_23.jpg 32.44KB
  240. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_24.jpg 32.45KB
  241. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_25.jpg 32.52KB
  242. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_26.jpg 32.71KB
  243. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Fart/fart_27.jpg 32.66KB
  244. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/
  245. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_00.jpg 36.05KB
  246. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_01.jpg 37.01KB
  247. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_02.jpg 37.43KB
  248. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_03.jpg 37.9KB
  249. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_04.jpg 37.86KB
  250. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_05.jpg 37.53KB
  251. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_06.jpg 37.34KB
  252. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_07.jpg 37.4KB
  253. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_08.jpg 37.45KB
  254. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_09.jpg 37.45KB
  255. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_10.jpg 37.5KB
  256. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_11.jpg 37.33KB
  257. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_12.jpg 37.02KB
  258. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_13.jpg 36.95KB
  259. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_14.jpg 36.9KB
  260. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_15.jpg 37.12KB
  261. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_16.jpg 37.12KB
  262. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_17.jpg 37.08KB
  263. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_18.jpg 37.05KB
  264. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_19.jpg 36.87KB
  265. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_20.jpg 36.94KB
  266. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_21.jpg 37.07KB
  267. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_22.jpg 37.27KB
  268. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_23.jpg 37.32KB
  269. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_24.jpg 37.33KB
  270. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_25.jpg 37.43KB
  271. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_26.jpg 37.2KB
  272. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_27.jpg 37.17KB
  273. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_28.jpg 36.76KB
  274. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootLeft/footLeft_29.jpg 36.05KB
  275. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/
  276. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_00.jpg 36.05KB
  277. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_01.jpg 36.31KB
  278. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_02.jpg 36.39KB
  279. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_03.jpg 36.95KB
  280. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_04.jpg 36.96KB
  281. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_05.jpg 36.81KB
  282. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_06.jpg 36.79KB
  283. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_07.jpg 36.8KB
  284. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_08.jpg 36.73KB
  285. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_09.jpg 36.81KB
  286. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_10.jpg 36.67KB
  287. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_11.jpg 36.49KB
  288. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_12.jpg 36.38KB
  289. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_13.jpg 36.12KB
  290. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_14.jpg 35.94KB
  291. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_15.jpg 36.08KB
  292. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_16.jpg 36.07KB
  293. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_17.jpg 35.93KB
  294. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_18.jpg 35.88KB
  295. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_19.jpg 35.77KB
  296. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_20.jpg 35.67KB
  297. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_21.jpg 35.83KB
  298. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_22.jpg 36.18KB
  299. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_23.jpg 36.16KB
  300. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_24.jpg 36.22KB
  301. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_25.jpg 36.38KB
  302. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_26.jpg 36.34KB
  303. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_27.jpg 36.28KB
  304. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_28.jpg 36.29KB
  305. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/FootRight/footRight_29.jpg 36.05KB
  306. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/
  307. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_00.jpg 32.19KB
  308. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_01.jpg 31.88KB
  309. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_02.jpg 31.61KB
  310. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_03.jpg 31.79KB
  311. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_04.jpg 32.69KB
  312. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_05.jpg 32.76KB
  313. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_06.jpg 32.37KB
  314. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_07.jpg 32.1KB
  315. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_08.jpg 32.19KB
  316. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_09.jpg 32.25KB
  317. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_10.jpg 31.97KB
  318. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_11.jpg 31.41KB
  319. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_12.jpg 31.19KB
  320. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_13.jpg 30.92KB
  321. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_14.jpg 30.89KB
  322. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_15.jpg 31.05KB
  323. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_16.jpg 31.71KB
  324. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_17.jpg 31.77KB
  325. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_18.jpg 32.04KB
  326. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_19.jpg 32.03KB
  327. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_20.jpg 32.82KB
  328. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_21.jpg 33.27KB
  329. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_22.jpg 33.24KB
  330. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_23.jpg 33.3KB
  331. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_24.jpg 33.16KB
  332. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_25.jpg 33.29KB
  333. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_26.jpg 33.25KB
  334. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_27.jpg 33.26KB
  335. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_28.jpg 33.22KB
  336. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_29.jpg 33.29KB
  337. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_30.jpg 33.25KB
  338. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_31.jpg 33.22KB
  339. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_32.jpg 33.22KB
  340. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_33.jpg 33.28KB
  341. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_34.jpg 33.21KB
  342. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_35.jpg 33.26KB
  343. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_36.jpg 33.17KB
  344. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_37.jpg 33.12KB
  345. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_38.jpg 32.02KB
  346. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_39.jpg 32.11KB
  347. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_40.jpg 32.25KB
  348. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_41.jpg 32.28KB
  349. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_42.jpg 32.31KB
  350. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_43.jpg 32.32KB
  351. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_44.jpg 32.19KB
  352. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_45.jpg 32.32KB
  353. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_46.jpg 32.37KB
  354. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_47.jpg 32.39KB
  355. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_48.jpg 32.33KB
  356. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_49.jpg 32.31KB
  357. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_50.jpg 32.13KB
  358. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_51.jpg 32.13KB
  359. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_52.jpg 31.91KB
  360. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_53.jpg 31.88KB
  361. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_54.jpg 31.87KB
  362. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_55.jpg 31.81KB
  363. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_56.jpg 31.87KB
  364. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_57.jpg 31.86KB
  365. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_58.jpg 31.87KB
  366. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_59.jpg 31.82KB
  367. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_60.jpg 31.92KB
  368. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_61.jpg 31.95KB
  369. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_62.jpg 31.95KB
  370. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_63.jpg 32.02KB
  371. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_64.jpg 32.29KB
  372. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_65.jpg 32.14KB
  373. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_66.jpg 32.08KB
  374. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_67.jpg 32.01KB
  375. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_68.jpg 31.97KB
  376. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_69.jpg 31.88KB
  377. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_70.jpg 31.99KB
  378. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_71.jpg 31.67KB
  379. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_72.jpg 31.82KB
  380. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_73.jpg 32.17KB
  381. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_74.jpg 32.26KB
  382. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_75.jpg 32.21KB
  383. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_76.jpg 32.2KB
  384. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_77.jpg 32.2KB
  385. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_78.jpg 32.19KB
  386. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_79.jpg 32.18KB
  387. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Knockout/knockout_80.jpg 32.19KB
  388. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/
  389. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_00.jpg 33.23KB
  390. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_01.jpg 34.13KB
  391. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_02.jpg 36.18KB
  392. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_03.jpg 36.83KB
  393. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_04.jpg 36.13KB
  394. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_05.jpg 36.3KB
  395. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_06.jpg 36.33KB
  396. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_07.jpg 36.7KB
  397. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_08.jpg 37.31KB
  398. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_09.jpg 38.04KB
  399. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_10.jpg 38.96KB
  400. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_11.jpg 31.37KB
  401. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_12.jpg 24.17KB
  402. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_13.jpg 21.12KB
  403. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_14.jpg 21.18KB
  404. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_15.jpg 20.91KB
  405. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_16.jpg 20.35KB
  406. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_17.jpg 19.01KB
  407. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_18.jpg 18.52KB
  408. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_19.jpg 19.11KB
  409. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_20.jpg 24.73KB
  410. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_21.jpg 28.89KB
  411. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_22.jpg 31.71KB
  412. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Pie/pie_23.jpg 33.23KB
  413. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/
  414. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_00.jpg 32.68KB
  415. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_01.jpg 32.81KB
  416. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_02.jpg 32.83KB
  417. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_03.jpg 33.04KB
  418. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_04.jpg 33.16KB
  419. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_05.jpg 33.17KB
  420. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_06.jpg 33.06KB
  421. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_07.jpg 33.02KB
  422. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_08.jpg 33.1KB
  423. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_09.jpg 32.2KB
  424. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_10.jpg 33.02KB
  425. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_11.jpg 33.42KB
  426. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_12.jpg 33.28KB
  427. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_13.jpg 33.3KB
  428. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_14.jpg 33.48KB
  429. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_15.jpg 33.67KB
  430. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_16.jpg 33.47KB
  431. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_17.jpg 33.28KB
  432. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_18.jpg 33.18KB
  433. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_19.jpg 33.09KB
  434. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_20.jpg 33.12KB
  435. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_21.jpg 33.27KB
  436. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_22.jpg 33.35KB
  437. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_23.jpg 33.47KB
  438. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_24.jpg 33.63KB
  439. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_25.jpg 32.98KB
  440. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_26.jpg 33.95KB
  441. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_27.jpg 34.04KB
  442. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_28.jpg 34.29KB
  443. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_29.jpg 34.45KB
  444. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_30.jpg 34.61KB
  445. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_31.jpg 34.67KB
  446. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_32.jpg 34.72KB
  447. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_33.jpg 34.78KB
  448. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_34.jpg 34.84KB
  449. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_35.jpg 34.84KB
  450. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_36.jpg 34.87KB
  451. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_37.jpg 35.01KB
  452. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_38.jpg 35.07KB
  453. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_39.jpg 35.18KB
  454. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_40.jpg 35.31KB
  455. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_41.jpg 35.45KB
  456. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_42.jpg 35.75KB
  457. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_43.jpg 35.51KB
  458. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_44.jpg 35.02KB
  459. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_45.jpg 34.08KB
  460. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_46.jpg 34.93KB
  461. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_47.jpg 34.67KB
  462. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_48.jpg 34.29KB
  463. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_49.jpg 34.15KB
  464. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_50.jpg 34.17KB
  465. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_51.jpg 34.12KB
  466. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_52.jpg 34.03KB
  467. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_53.jpg 33.68KB
  468. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_54.jpg 33.1KB
  469. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Scratch/scratch_55.jpg 32.68KB
  470. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/
  471. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_00.jpg 32.19KB
  472. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_01.jpg 32.36KB
  473. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_02.jpg 32.58KB
  474. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_03.jpg 32.77KB
  475. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_04.jpg 32.5KB
  476. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_05.jpg 32.04KB
  477. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_06.jpg 31.67KB
  478. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_07.jpg 31.5KB
  479. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_08.jpg 31.39KB
  480. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_09.jpg 31.29KB
  481. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_10.jpg 31.43KB
  482. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_11.jpg 31.46KB
  483. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_12.jpg 31.57KB
  484. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_13.jpg 31.98KB
  485. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_14.jpg 32.18KB
  486. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_15.jpg 32.02KB
  487. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_16.jpg 31.96KB
  488. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_17.jpg 31.99KB
  489. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_18.jpg 32.04KB
  490. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_19.jpg 32.08KB
  491. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_20.jpg 32.29KB
  492. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_21.jpg 32.28KB
  493. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_22.jpg 32.2KB
  494. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_23.jpg 32.14KB
  495. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_24.jpg 31.91KB
  496. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_25.jpg 31.77KB
  497. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_26.jpg 32.31KB
  498. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_27.jpg 32.49KB
  499. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_28.jpg 32.52KB
  500. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_29.jpg 32.4KB
  501. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_30.jpg 32.42KB
  502. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_31.jpg 32.44KB
  503. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_32.jpg 32.32KB
  504. SmallGame-master/MyTom/src/cn/edu/tlu/img/Animations/Stomach/stomach_33.jpg 32.19KB
  505. SmallGame-master/MyTom/src/cn/edu/tlu/img/Buttons/
  506. SmallGame-master/MyTom/src/cn/edu/tlu/img/Buttons/.DS_Store 6KB
  507. SmallGame-master/MyTom/src/cn/edu/tlu/img/Buttons/cymbal.png 5.58KB
  508. SmallGame-master/MyTom/src/cn/edu/tlu/img/Buttons/drink.png 4.91KB
  509. SmallGame-master/MyTom/src/cn/edu/tlu/img/Buttons/eat.png 5.68KB
  510. SmallGame-master/MyTom/src/cn/edu/tlu/img/Buttons/fart.png 5.59KB
  511. SmallGame-master/MyTom/src/cn/edu/tlu/img/Buttons/pie.png 6.02KB
  512. SmallGame-master/MyTom/src/cn/edu/tlu/img/Buttons/scratch.png 5.37KB
  513. SmallGame-master/MyTom/src/cn/edu/tlu/MyTom.java 474B
  514. SmallGame-master/MyTom/src/cn/edu/tlu/MyTomPanel.java 7.17KB
  515. SmallGame-master/MyWord/
  516. SmallGame-master/MyWord/.classpath 295B
  517. SmallGame-master/MyWord/.gitignore 6B
  518. SmallGame-master/MyWord/.project 365B
  519. SmallGame-master/MyWord/.settings/
  520. SmallGame-master/MyWord/.settings/org.eclipse.jdt.core.prefs 587B
  521. SmallGame-master/MyWord/src/
  522. SmallGame-master/MyWord/src/cn/
  523. SmallGame-master/MyWord/src/cn/edu/
  524. SmallGame-master/MyWord/src/cn/edu/tlu/
  525. SmallGame-master/MyWord/src/cn/edu/tlu/common/
  526. SmallGame-master/MyWord/src/cn/edu/tlu/common/Utils.java 745B
  527. SmallGame-master/MyWord/src/cn/edu/tlu/MyWord.java 487B
  528. SmallGame-master/MyWord/src/cn/edu/tlu/MyWordPanel.java 2.53KB
  529. SmallGame-master/PushBox/
  530. SmallGame-master/PushBox/.classpath 295B
  531. SmallGame-master/PushBox/.project 366B
  532. SmallGame-master/PushBox/.settings/
  533. SmallGame-master/PushBox/.settings/org.eclipse.jdt.core.prefs 587B
  534. SmallGame-master/PushBox/bin/
  535. SmallGame-master/PushBox/bin/.gitignore 5B
  536. SmallGame-master/PushBox/maps/
  537. SmallGame-master/PushBox/maps/0.map 419B
  538. SmallGame-master/PushBox/maps/1.map 419B
  539. SmallGame-master/PushBox/maps/10.map 419B
  540. SmallGame-master/PushBox/maps/11.map 419B
  541. SmallGame-master/PushBox/maps/12.map 419B
  542. SmallGame-master/PushBox/maps/13.map 419B
  543. SmallGame-master/PushBox/maps/14.map 419B
  544. SmallGame-master/PushBox/maps/15.map 419B
  545. SmallGame-master/PushBox/maps/16.map 419B
  546. SmallGame-master/PushBox/maps/17.map 419B
  547. SmallGame-master/PushBox/maps/18.map 419B
  548. SmallGame-master/PushBox/maps/19.map 419B
  549. SmallGame-master/PushBox/maps/2.map 419B
  550. SmallGame-master/PushBox/maps/20.map 419B
  551. SmallGame-master/PushBox/maps/21.map 419B
  552. SmallGame-master/PushBox/maps/22.map 419B
  553. SmallGame-master/PushBox/maps/23.map 419B
  554. SmallGame-master/PushBox/maps/24.map 419B
  555. SmallGame-master/PushBox/maps/25.map 419B
  556. SmallGame-master/PushBox/maps/26.map 419B
  557. SmallGame-master/PushBox/maps/27.map 419B
  558. SmallGame-master/PushBox/maps/28.map 419B
  559. SmallGame-master/PushBox/maps/29.map 419B
  560. SmallGame-master/PushBox/maps/3.map 419B
  561. SmallGame-master/PushBox/maps/30.map 419B
  562. SmallGame-master/PushBox/maps/31.map 419B
  563. SmallGame-master/PushBox/maps/32.map 419B
  564. SmallGame-master/PushBox/maps/33.map 419B
  565. SmallGame-master/PushBox/maps/34.map 419B
  566. SmallGame-master/PushBox/maps/35.map 419B
  567. SmallGame-master/PushBox/maps/36.map 419B
  568. SmallGame-master/PushBox/maps/37.map 419B
  569. SmallGame-master/PushBox/maps/38.map 419B
  570. SmallGame-master/PushBox/maps/39.map 420B
  571. SmallGame-master/PushBox/maps/4.map 419B
  572. SmallGame-master/PushBox/maps/40.map 419B
  573. SmallGame-master/PushBox/maps/41.map 419B
  574. SmallGame-master/PushBox/maps/42.map 419B
  575. SmallGame-master/PushBox/maps/43.map 419B
  576. SmallGame-master/PushBox/maps/44.map 419B
  577. SmallGame-master/PushBox/maps/45.map 419B
  578. SmallGame-master/PushBox/maps/46.map 419B
  579. SmallGame-master/PushBox/maps/47.map 419B
  580. SmallGame-master/PushBox/maps/48.map 419B
  581. SmallGame-master/PushBox/maps/49.map 419B
  582. SmallGame-master/PushBox/maps/5.map 419B
  583. SmallGame-master/PushBox/maps/50.map 419B
  584. SmallGame-master/PushBox/maps/6.map 419B
  585. SmallGame-master/PushBox/maps/7.map 419B
  586. SmallGame-master/PushBox/maps/8.map 419B
  587. SmallGame-master/PushBox/maps/9.map 419B
  588. SmallGame-master/PushBox/musics/
  589. SmallGame-master/PushBox/musics/default.mid 12.98KB
  590. SmallGame-master/PushBox/musics/eyes on me.mid 45.08KB
  591. SmallGame-master/PushBox/musics/guang.mid 73.52KB
  592. SmallGame-master/PushBox/musics/popo.mid 14.87KB
  593. SmallGame-master/PushBox/musics/qin.mid 43.97KB
  594. SmallGame-master/PushBox/pic/
  595. SmallGame-master/PushBox/pic/0.gif 639B
  596. SmallGame-master/PushBox/pic/1.gif 1.69KB
  597. SmallGame-master/PushBox/pic/2.GIF 1.6KB
  598. SmallGame-master/PushBox/pic/3.GIF 1.69KB
  599. SmallGame-master/PushBox/pic/4.gif 1.67KB
  600. SmallGame-master/PushBox/pic/5.GIF 1.64KB
  601. SmallGame-master/PushBox/pic/6.GIF 1.59KB
  602. SmallGame-master/PushBox/pic/7.GIF 1.57KB
  603. SmallGame-master/PushBox/pic/8.GIF 1.62KB
  604. SmallGame-master/PushBox/pic/9.GIF 512B
  605. SmallGame-master/PushBox/pic/Thumbs.db 23KB
  606. SmallGame-master/PushBox/src/
  607. SmallGame-master/PushBox/src/cn/
  608. SmallGame-master/PushBox/src/cn/edu/
  609. SmallGame-master/PushBox/src/cn/edu/tlu/
  610. SmallGame-master/PushBox/src/cn/edu/tlu/MainFrame.java 10.56KB
  611. SmallGame-master/PushBox/src/cn/edu/tlu/MainPanel.java 11.65KB
  612. SmallGame-master/PushBox/src/cn/edu/tlu/Map.java 1.31KB
  613. SmallGame-master/PushBox/src/cn/edu/tlu/PushBoxLauncher.java 166B
  614. SmallGame-master/PushBox/src/cn/edu/tlu/Sound.java 1009B
  615. SmallGame-master/SuperMario/
  616. SmallGame-master/SuperMario/.classpath 295B
  617. SmallGame-master/SuperMario/.gitignore 6B
  618. SmallGame-master/SuperMario/.project 369B
  619. SmallGame-master/SuperMario/.settings/
  620. SmallGame-master/SuperMario/.settings/org.eclipse.jdt.core.prefs 587B
  621. SmallGame-master/SuperMario/src/
  622. SmallGame-master/SuperMario/src/bgsheet.png 14.75KB
  623. SmallGame-master/SuperMario/src/cn/
  624. SmallGame-master/SuperMario/src/cn/edu/
  625. SmallGame-master/SuperMario/src/cn/edu/tlu/
  626. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/
  627. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/Art.java 6.67KB
  628. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/BgRenderer.java 2.42KB
  629. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/GameLauncher.java 843B
  630. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/level/
  631. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/level/BgLevelGenerator.java 3.81KB
  632. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/level/ImprovedNoise.java 5.08KB
  633. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/level/Level.java 3.85KB
  634. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/level/LevelGenerator.java 13.07KB
  635. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/level/SpriteTemplate.java 768B
  636. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/LevelRenderer.java 7.6KB
  637. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/LevelScene.java 12.9KB
  638. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/LoseScene.java 1.19KB
  639. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/mapedit/
  640. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/mapedit/LevelEditor.java 4.02KB
  641. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/mapedit/LevelEditView.java 2.55KB
  642. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/mapedit/TilePicker.java 2.33KB
  643. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/MapScene.java 13.5KB
  644. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/MarioComponent.java 7.13KB
  645. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/Recorder.java 819B
  646. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/Replayer.java 803B
  647. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/Scale2x.java 3.92KB
  648. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/Scene.java 624B
  649. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/sprites/
  650. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/sprites/BulletBill.java 2.37KB
  651. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/sprites/CoinAnim.java 684B
  652. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/sprites/Enemy.java 8.86KB
  653. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/sprites/Fireball.java 4.22KB
  654. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/sprites/FireFlower.java 923B
  655. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/sprites/FlowerEnemy.java 1.67KB
  656. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/sprites/Mario.java 13.5KB
  657. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/sprites/Mushroom.java 4.33KB
  658. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/sprites/Particle.java 644B
  659. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/sprites/Shell.java 6.54KB
  660. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/sprites/Sparkle.java 793B
  661. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/sprites/Sprite.java 2.03KB
  662. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/sprites/SpriteContext.java 152B
  663. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/TitleScene.java 1.72KB
  664. SmallGame-master/SuperMario/src/cn/edu/tlu/mario/WinScene.java 1.17KB
  665. SmallGame-master/SuperMario/src/cn/edu/tlu/sonar/
  666. SmallGame-master/SuperMario/src/cn/edu/tlu/sonar/FakeSoundEngine.java 486B
  667. SmallGame-master/SuperMario/src/cn/edu/tlu/sonar/FixedSoundSource.java 449B
  668. SmallGame-master/SuperMario/src/cn/edu/tlu/sonar/mixer/
  669. SmallGame-master/SuperMario/src/cn/edu/tlu/sonar/mixer/ListenerMixer.java 2.16KB
  670. SmallGame-master/SuperMario/src/cn/edu/tlu/sonar/mixer/Sound.java 1.71KB
  671. SmallGame-master/SuperMario/src/cn/edu/tlu/sonar/sample/
  672. SmallGame-master/SuperMario/src/cn/edu/tlu/sonar/sample/SampleLoader.java 2.91KB
  673. SmallGame-master/SuperMario/src/cn/edu/tlu/sonar/sample/SamplePlayer.java 854B
  674. SmallGame-master/SuperMario/src/cn/edu/tlu/sonar/sample/SonarSample.java 341B
  675. SmallGame-master/SuperMario/src/cn/edu/tlu/sonar/SonarSoundEngine.java 3.27KB
  676. SmallGame-master/SuperMario/src/cn/edu/tlu/sonar/SoundListener.java 81B
  677. SmallGame-master/SuperMario/src/cn/edu/tlu/sonar/SoundProducer.java 188B
  678. SmallGame-master/SuperMario/src/cn/edu/tlu/sonar/SoundSource.java 126B
  679. SmallGame-master/SuperMario/src/cn/edu/tlu/sonar/StereoSoundProducer.java 189B
  680. SmallGame-master/SuperMario/src/endscene.gif 2.92KB
  681. SmallGame-master/SuperMario/src/enemysheet.png 7.88KB
  682. SmallGame-master/SuperMario/src/firemariosheet.png 5.91KB
  683. SmallGame-master/SuperMario/src/font.gif 6.7KB
  684. SmallGame-master/SuperMario/src/gameovergost.gif 3.68KB
  685. SmallGame-master/SuperMario/src/itemsheet.png 3.95KB
  686. SmallGame-master/SuperMario/src/logo.gif 2.68KB
  687. SmallGame-master/SuperMario/src/mapsheet.png 13.12KB
  688. SmallGame-master/SuperMario/src/mariosheet.png 5.61KB
  689. SmallGame-master/SuperMario/src/mus/
  690. SmallGame-master/SuperMario/src/mus/smb3map1.mid 2.09KB
  691. SmallGame-master/SuperMario/src/mus/smb3ovr1.mid 6.61KB
  692. SmallGame-master/SuperMario/src/mus/smb3undr.mid 3.76KB
  693. SmallGame-master/SuperMario/src/mus/smwfortress.mid 30.18KB
  694. SmallGame-master/SuperMario/src/mus/smwovr1.mid 11.8KB
  695. SmallGame-master/SuperMario/src/mus/smwovr2.mid 8.42KB
  696. SmallGame-master/SuperMario/src/mus/smwtitle.mid 10.41KB
  697. SmallGame-master/SuperMario/src/particlesheet.png 3.24KB
  698. SmallGame-master/SuperMario/src/racoonmariosheet.png 6.45KB
  699. SmallGame-master/SuperMario/src/smallmariosheet.png 1.43KB
  700. SmallGame-master/SuperMario/src/snd/
  701. SmallGame-master/SuperMario/src/snd/1-up.wav 4.57KB
  702. SmallGame-master/SuperMario/src/snd/breakblock.wav 5.6KB
  703. SmallGame-master/SuperMario/src/snd/bump.wav 2.16KB
  704. SmallGame-master/SuperMario/src/snd/cannon.wav 3.93KB
  705. SmallGame-master/SuperMario/src/snd/coin.wav 4.21KB
  706. SmallGame-master/SuperMario/src/snd/death.wav 34.07KB
  707. SmallGame-master/SuperMario/src/snd/exit.wav 32.21KB
  708. SmallGame-master/SuperMario/src/snd/fireball.wav 869B
  709. SmallGame-master/SuperMario/src/snd/jump.wav 2.66KB
  710. SmallGame-master/SuperMario/src/snd/kick.wav 1.13KB
  711. SmallGame-master/SuperMario/src/snd/message.wav 7.58KB
  712. SmallGame-master/SuperMario/src/snd/pipe.wav 30.63KB
  713. SmallGame-master/SuperMario/src/snd/powerdown.wav 7.23KB
  714. SmallGame-master/SuperMario/src/snd/powerup.wav 8.98KB
  715. SmallGame-master/SuperMario/src/snd/sprout.wav 4.69KB
  716. SmallGame-master/SuperMario/src/snd/stagestart.wav 29.26KB
  717. SmallGame-master/SuperMario/src/snd/stomp.wav 2.32KB
  718. SmallGame-master/SuperMario/src/test.lvl 7.51KB
  719. SmallGame-master/SuperMario/src/Thumbs.db 41KB
  720. SmallGame-master/SuperMario/src/tiles.dat 256B
  721. SmallGame-master/SuperMario/src/title.gif 6.36KB
  722. SmallGame-master/SuperMario/src/worldmap.png 10.2KB
  723. SmallGame-master/SuperMario/tiles.dat 256B
  724. SmallGame-master/WinMine/
  725. SmallGame-master/WinMine/.classpath 295B
  726. SmallGame-master/WinMine/.gitignore 6B
  727. SmallGame-master/WinMine/.project 366B
  728. SmallGame-master/WinMine/.settings/
  729. SmallGame-master/WinMine/.settings/org.eclipse.jdt.core.prefs 587B
  730. SmallGame-master/WinMine/img/
  731. SmallGame-master/WinMine/img/._1.gif 4KB
  732. SmallGame-master/WinMine/img/._10.gif 4KB
  733. SmallGame-master/WinMine/img/._2.gif 4KB
  734. SmallGame-master/WinMine/img/._3.gif 4KB
  735. SmallGame-master/WinMine/img/._4.gif 4KB
  736. SmallGame-master/WinMine/img/._5.gif 4KB
  737. SmallGame-master/WinMine/img/._6.gif 4KB
  738. SmallGame-master/WinMine/img/._7.gif 4KB
  739. SmallGame-master/WinMine/img/._8.gif 4KB
  740. SmallGame-master/WinMine/img/._back.png 4KB
  741. SmallGame-master/WinMine/img/._bar.png 4KB
  742. SmallGame-master/WinMine/img/._bomb.gif 4KB
  743. SmallGame-master/WinMine/img/._but_bac.png 4KB
  744. SmallGame-master/WinMine/img/._but_open.png 4KB
  745. SmallGame-master/WinMine/img/._close.png 4KB
  746. SmallGame-master/WinMine/img/._flush.png 4KB
  747. SmallGame-master/WinMine/img/._hongqi.png 4KB
  748. SmallGame-master/WinMine/img/._icon.jpg 4KB
  749. SmallGame-master/WinMine/img/._min.png 4KB
  750. SmallGame-master/WinMine/img/._style1.png 4KB
  751. SmallGame-master/WinMine/img/._style2 4KB
  752. SmallGame-master/WinMine/img/._style2.png 4KB
  753. SmallGame-master/WinMine/img/._style3 4KB
  754. SmallGame-master/WinMine/img/._style3.png 4KB
  755. SmallGame-master/WinMine/img/1.gif 845B
  756. SmallGame-master/WinMine/img/2.gif 848B
  757. SmallGame-master/WinMine/img/3.gif 847B
  758. SmallGame-master/WinMine/img/4.gif 852B
  759. SmallGame-master/WinMine/img/5.gif 848B
  760. SmallGame-master/WinMine/img/6.gif 853B
  761. SmallGame-master/WinMine/img/7.gif 848B
  762. SmallGame-master/WinMine/img/8.gif 853B
  763. SmallGame-master/WinMine/img/back.png 257.56KB
  764. SmallGame-master/WinMine/img/bar.png 7.22KB
  765. SmallGame-master/WinMine/img/bomb.gif 860B
  766. SmallGame-master/WinMine/img/but_back.png 1.18KB
  767. SmallGame-master/WinMine/img/but_open.png 1.21KB
  768. SmallGame-master/WinMine/img/close.png 1.61KB
  769. SmallGame-master/WinMine/img/flush.png 1.74KB
  770. SmallGame-master/WinMine/img/hongqi.png 1.44KB
  771. SmallGame-master/WinMine/img/icon.jpg 5.38KB
  772. SmallGame-master/WinMine/img/min.png 1.53KB
  773. SmallGame-master/WinMine/img/style1.png 2.21KB
  774. SmallGame-master/WinMine/img/style2.png 2.58KB
  775. SmallGame-master/WinMine/img/style2/
  776. SmallGame-master/WinMine/img/style2/._back.png 4KB
  777. SmallGame-master/WinMine/img/style2/._but_22.png 4KB
  778. SmallGame-master/WinMine/img/style2/._but_bac.png 4KB
  779. SmallGame-master/WinMine/img/style2/._but_open.png 4KB
  780. SmallGame-master/WinMine/img/style2/._style1.png 4KB
  781. SmallGame-master/WinMine/img/style2/._style2.png 4KB
  782. SmallGame-master/WinMine/img/style2/._style3.png 4KB
  783. SmallGame-master/WinMine/img/style2/back.png 209.12KB
  784. SmallGame-master/WinMine/img/style2/but_back.png 1.18KB
  785. SmallGame-master/WinMine/img/style2/but_open.png 1.21KB
  786. SmallGame-master/WinMine/img/style2/hongqi.png 1.43KB
  787. SmallGame-master/WinMine/img/style2/style1.png 2.19KB
  788. SmallGame-master/WinMine/img/style2/style2.png 2.57KB
  789. SmallGame-master/WinMine/img/style2/style3.png 2.69KB
  790. SmallGame-master/WinMine/img/style3.png 2.76KB
  791. SmallGame-master/WinMine/img/style3/
  792. SmallGame-master/WinMine/img/style3/._back.png 4KB
  793. SmallGame-master/WinMine/img/style3/._but_bac.png 4KB
  794. SmallGame-master/WinMine/img/style3/._but_open.png 4KB
  795. SmallGame-master/WinMine/img/style3/._hongqi.png 4KB
  796. SmallGame-master/WinMine/img/style3/._style1.png 4KB
  797. SmallGame-master/WinMine/img/style3/._style2.png 4KB
  798. SmallGame-master/WinMine/img/style3/._style3.png 4KB
  799. SmallGame-master/WinMine/img/style3/back.png 188.21KB
  800. SmallGame-master/WinMine/img/style3/but_back.png 1.16KB
  801. SmallGame-master/WinMine/img/style3/but_open.png 1.2KB
  802. SmallGame-master/WinMine/img/style3/hongqi.png 1.4KB
  803. SmallGame-master/WinMine/img/style3/style1.png 2.18KB
  804. SmallGame-master/WinMine/img/style3/style2.png 2.52KB
  805. SmallGame-master/WinMine/img/style3/style3.png 2.64KB
  806. SmallGame-master/WinMine/src/
  807. SmallGame-master/WinMine/src/cn/
  808. SmallGame-master/WinMine/src/cn/edu/
  809. SmallGame-master/WinMine/src/cn/edu/tlu/
  810. SmallGame-master/WinMine/src/cn/edu/tlu/common/
  811. SmallGame-master/WinMine/src/cn/edu/tlu/common/Utils.java 1.12KB
  812. SmallGame-master/WinMine/src/cn/edu/tlu/Mine.java 926B
  813. SmallGame-master/WinMine/src/cn/edu/tlu/MyFrame.java 14.4KB
  814. SmallGame-master/WinMine/src/cn/edu/tlu/Test.java 138B
0评论
提交 加载更多评论
其他资源 机器学习-集成任务-Titanic
本实验的目标是利用集成学习方法,构建一个预测模型来判断泰坦尼克号乘客的生存情况。该任务主要依赖于乘客的特征,如年龄、性别、船票等级和家庭信息等,通过机器学习模型挖掘这些特征与生存状态之间的关系。
mingw-x86_64-13.2.0-release-win32-seh-msvcrt-rt_v11-rev1.7z.zip
文件放服务器下载,请务必到电脑端资源预览或者资源详情查看然后下载
minepy-1.2.6-cp312-cp312-win_amd64.zip
文件放服务器下载,请务必到电脑端资源预览或者资源详情查看然后下载
mingw-x86_64-11.2.0-release-win32-sjlj-rt_v9-rev0.7z.zip
文件放服务器下载,请务必到电脑端资源预览或者资源详情查看然后下载
python erp项目
python erp项目
platform-tools-latest-darwin.zip
platform-tools-latest-darwin.zip
node.js用户登录
node.js用户登录
node.js用户注册
node.js用户注册