move all files to their own folder

This commit is contained in:
Evan Pratten 2020-04-17 14:18:27 -04:00
parent 24530a0370
commit 63ae6b7b82
No known key found for this signature in database
GPG Key ID: 93AC7B3D071356D3
5 changed files with 1114 additions and 1114 deletions

View File

@ -1,25 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<!-- <link rel="icon" type="image/gif" href="icon.png"/> -->
<title>title</title>
<style>
html {
background-color: #242424;
color: white;
}
canvas {
position:absolute;
top:0;bottom:0;right:0;left:0;
margin:auto;
border: 5px solid rgb(63, 63, 63);
border-radius: 10px;
}
</style>
</head>
<body>
<canvas width="1000" height="800" id="game"></canvas>
<script src="scripts/game.js"></script>
<script src="scripts/index.js"></script>
</body>
<!DOCTYPE html>
<html>
<head>
<!-- <link rel="icon" type="image/gif" href="icon.png"/> -->
<title>title</title>
<style>
html {
background-color: #242424;
color: white;
}
canvas {
position:absolute;
top:0;bottom:0;right:0;left:0;
margin:auto;
border: 5px solid rgb(63, 63, 63);
border-radius: 10px;
}
</style>
</head>
<body>
<canvas width="1000" height="800" id="game"></canvas>
<script src="scripts/game.js"></script>
<script src="scripts/index.js"></script>
</body>
</html>

File diff suppressed because it is too large Load Diff

View File

@ -1,29 +1,29 @@
images = [
""
];
audio = [
""
];
function update() {
}
function input() {
}
function draw() {
}
function absoluteDraw() {
}
function onAssetsLoaded() {
}
images = [
""
];
audio = [
""
];
function update() {
}
function input() {
}
function draw() {
}
function absoluteDraw() {
}
function onAssetsLoaded() {
}
setup(60);