Files
tianshu-engine/editor/index.html

17 lines
511 B
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>剧情编辑器 — 交互式电影游戏</title>
<style>
html, body { width: 100%; height: 100%; margin: 0; overflow: hidden; background: #0a0a16; }
#editor-app { width: 100%; height: 100%; }
</style>
</head>
<body>
<div id="editor-app"></div>
<script type="module" src="/editor/main.ts"></script>
</body>
</html>