-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (29 loc) · 1.13 KB
/
index.html
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
29
30
31
32
33
34
<!--
2D Sidescroller jumping game.
Made for learning purposes by Kristian Virtanen.
https://github.com/EkBass/p5-2D-Sidescroller
-->
<!DOCTYPE html>
<html lang="en">
<head>
<script src="p5.js"></script>
<script src="p5.sound.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8">
<meta name="2D Scroller Game" content="2D Scroller Game">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<meta name="viewport" content="user-scalable=yes,initial-scale=1,maximum-scale=1,minimum-scale=0.1,width=device-width">
<title>2D Scroller Game</title>
</head>
<body>
<script src="init.js"></script>
<script src="class/actor.js"></script>
<script src="class/cloud.js"></script>
<script src="functions.js"></script>
<script src="class/player.js"></script>
<p>©Kristian Virtanen, 2022</p>
<p>Source code available at <a href="https://github.com/EkBass/p5-2D-Sidescroller"><u>GitHub</u></a></p>
<p>Support my bass hobby and subscribe my Youtube <a href="https://www.youtube.com/c/KristianVirtanen"><u>channel</u></a>.</p>
<script src="sketch.js"></script>
</body>
</html>