46 lines
1.3 KiB
HTML
46 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>메뉴</title>
|
|
|
|
|
|
<!-- <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script> -->
|
|
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.6.2/phaser.js"></script> -->
|
|
<script src="../../../resources/js/phaser.min.js"></script>
|
|
|
|
<!-- global source files -->
|
|
<script src="../../game/lib/session_storage_manager.js"></script>
|
|
<script src="../../game/global/global_variables.js"></script>
|
|
|
|
<!-- library source files -->
|
|
<script src="../../game/lib/input_type_text.js"></script>
|
|
<script src="../../game/lib/round_rect_button.js"></script>
|
|
<script src="../../game/lib/back_button.js"></script>
|
|
<script src="../../game/lib/fullscreen_button.js"></script>
|
|
<script src="../../game/lib/app_button.js"></script>
|
|
<script src="../../game/lib/game_app_button.js"></script>
|
|
<script src="../../game/lib/screen_bottom.js"></script>
|
|
<script src="../../game/lib/db_connect_manager.js"></script>
|
|
|
|
<!-- source files -->
|
|
<script src="../../game/menu/menu_app.js"></script>
|
|
<script src="../../game/menu/main_menu_app.js"></script>
|
|
|
|
|
|
<style>
|
|
body{
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
canvas{
|
|
margin: 0 auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="MenuApp" style="text-align:center;" />
|
|
</body>
|
|
</html> |