미니 프로젝트/Java로 만드는 리듬게임1 Java로 리듬게임 만들기 여태 배운 Java 문법들을 복습한다는 느낌으로 클론 코딩을 진행했다. 참고한 강의는 https://youtu.be/xs92kqU2YWg package Drop_the_Beat14; public class Main { public static final int SCREEN_WIDTH = 1280; public static final int SCREEN_HEIGHT = 720; public static final int NOTE_SPEED = 3; public static final int SLEEP_TIME = 10; public static final int REACH_TIME = 2; public static void main(String[] args) { new DropTheBeat(); } } 드.. 2023. 6. 1. 이전 1 다음