JS_Projects/rayCasting/index.html

26 lines
630 B
HTML
Raw Permalink Normal View History

2022-11-09 23:34:49 +01:00
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>p5.js example</title>
<style>
body {
padding: 0;
margin: 0;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.8.0/addons/p5.dom.min.js"></script>
<script src="sketch.js"></script>
<script src="ray.js"></script>
<script src="wall.js"></script>
<script src="display.js"></script>
<script src="player.js"></script>
</head>
<body>
</body>
</html>