Page 28 - 2
P. 28

try {
                                                    Thread.sleep(5);
                                            } catch (InterruptedException e) {
                                                    e.printStackTrace();
                                            }
                                    }
                            }
                    }


                    public static void clear() { //  점수와 콤보수를 초기화 시켜주는 함수
                            c = 0;
                            s = 0;
                    }


                    public void judge(String input) { //  노트가 떨어졌는지 판단을 해주는 함수
                            for (int i = 0; i < noteList.size(); i++) {
                                    Note note = noteList.get(i);
                                    if (input.equals(note.getNoteType())) {
                                            judgeEvent(note.judge());
                                            break;
                                    }
                            }
                    }


            8.  실습사진
                <9 월>
















                       시작GUI    구성                시작과 종료버튼 생성                       창 종료버튼 생성






















                                                         - 28 -
   23   24   25   26   27   28   29   30   31   32   33