-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patheditor.html
More file actions
24 lines (24 loc) · 813 Bytes
/
Copy patheditor.html
File metadata and controls
24 lines (24 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<head>
<title>OUTERTALE (ROOM EDITOR)</title>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<link rel="icon" href="./icon.png">
<link rel="stylesheet" href="./index.css">
<script defer type="module" src="./index.js"></script>
<script defer type="module" src="./code/editor.ts"></script>
</head>
<body>
<div id="frame">
<img id="splash" draggable="false" src="./splash.gif">
<div id="border-container">
<div id="wrapper"></div>
</div>
<div id="mobile-controller">
<div id="function-keys"></div>
<div id="arrow-keys"></div>
<div id="joystick"></div>
<div id="temp-keys"></div>
</div>
</div>
</body>