This repository has been archived on 2022-12-05. You can view files and clone it, but cannot push or open issues or pull requests.
GeometryDash3D/index.html
Mylloon 8d61067ee2
* add score on top of the game
* reuse already created cones
2022-11-24 21:33:38 +01:00

25 lines
679 B
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"
/>
<title>Moteur de jeu • Projet</title>
<style>
body {
margin: 0px;
}
</style>
</head>
<body>
<div id="score"></div>
<script src="./js/lib/three.min.js"></script>
<script src="./js/lib/dat.gui.min.js"></script>
<script type="module" src="./js/main.js"></script>
</body>
</html>