reeco
Version:
Reeco is a CLI that helps you create game with p5.js (or any other graphics/game library) and bring it to your desktop.
23 lines • 647 B
HTML
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
html, body {
margin: 0;
padding: 0;
}
main canvas {
display: block;
position: absolute;
top: 0;
left: 0;
}
</style>
</head>
<body>
</body>
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/p5.min.js"></script>
<script defer src="../../index.js"></script>
</html>