-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
executable file
·26 lines (26 loc) · 1.31 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html lang='zh'>
<head>
<title>ChatFlow</title>
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
<link href='dist/css/ui.css' rel='stylesheet'>
</head>
<body>
<div class='col'>
<div class='panel chatbox' data-yaml='yaml/test.yaml'></div>
</div>
<script src='lib/js-yaml.js' type='text/javascript'></script>
<script src='lib/jquery-2.1.1.min.js' type='text/javascript'></script>
<script src='dist/js/plugins/jquery.typing-string.js' type='text/javascript'></script>
<script src='dist/js/game/utils.js' type='text/javascript'></script>
<script src='dist/js/game/game.js' type='text/javascript'></script>
<script src='dist/js/game/npc.js' type='text/javascript'></script>
<script src='dist/js/game/script_runner.js' type='text/javascript'></script>
<script src='dist/js/game/chatbox.js' type='text/javascript'></script>
<script src='dist/js/game/chat_sentence.js' type='text/javascript'></script>
<script src='dist/js/game/chatpop.js' type='text/javascript'></script>
<script src='dist/js/game/questionpop.js' type='text/javascript'></script>
<script src='dist/js/ui.js' type='text/javascript'></script>
</body>
</html>