호그와트

한국어 어휘량을 폭발적으로 증가시키는 앱에 관하여 (7) by 영웅 A to Z

영웅*^%&$ 2024. 6. 30. 16:12
728x90

모든 내용은 저에 의하여 작성되었습니다

제목에도 (7)이라는 표기가 있듯이

이 앱 전체를 보려면 이 제목 숫자 전체를 보아야 합니다

이는 블로그라는 한계 때문입니다 참고 부탁드립니다

package com.example.chimchak;

import java.util.*;
import javafx.application.Application;

public class MainApplication {
    public static void main(String[] args) {

        KoreanTestGame testGame = new KoreanTestGame();
        testGame.start();
        String userLevel = testGame.getUserLevel();

        String excelFilePath = "C:\\Users\\jarid\\OneDrive\\바탕 화면\\penguin\\programming\\KoreanTextGameData.xlsx";

        //KoreanTextGame textGame = new KoreanTextGame(excelFilePath, "Medium"); for testing
        KoreanTextGame textGame = new KoreanTextGame(excelFilePath, userLevel);
        textGame.initializeGame();
        Application.launch(KoreanTextGameFX.class);

      }
    }

728x90