forked from loglot-dev/YA2P-FINAL-Beta
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmap.html
More file actions
28 lines (22 loc) · 644 Bytes
/
Copy pathmap.html
File metadata and controls
28 lines (22 loc) · 644 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
25
26
27
28
<!DOCTYPE html>
<link rel="icon" type="image/x-icon"
href="https://raw.githubusercontent.com/loglot/Yet-Another-Collectathon/main/logo.ico">
<title>Yet Another 2d Platformer</title>
<style>
* {
padding: 0;
margin: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
canvas {
background: #5555ff;
display: block;
margin: 0 auto;
}
</style>
<body style="background-color:rgb(0, 0, 0);"></body>
<!----><canvas id="game_screen" width="16760" height="9180"></canvas> <!---->
<script type="module" src="../main.js"></script>