A java snake game for A.U.TH. Data structures class
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
354 B

  1. package SnakePkg;
  2. public class Game {
  3. public static void main(String[] args) {
  4. try {
  5. Board b = new Board(10, 20, 3, 6, 6);
  6. b.createBoard();
  7. b.createElementBoard();
  8. }
  9. catch(Exception e){
  10. System.out.println("Exception caught:" + e.getMessage());
  11. }
  12. }
  13. }