Initial commit, woeking client/server connection, player movement

This commit is contained in:
2021-01-30 12:17:27 +02:00
commit 30e5d27b33
23 changed files with 113005 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #000000;
}
main {
display: flex;
justify-content: center;
align-items: center;
width: 100vw;
height: 100vh;
}