Experimental canvas 2D engine for tile-based sidescroller/sandbox games, created strictly for educational purposes.
entity-component-system game-engine canvas-2d
at develop 436 B view raw
1<!DOCTYPE html> 2<html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <meta http-equiv="X-UA-Compatible" content="ie=edge"> 7 <title>Cosmic Demo</title> 8 <link rel="stylesheet" href="styles/base.css"> 9 <link rel="icon" href="./favicon.ico" type="image/png"> 10 </head> 11 <body> 12 <script src="src/index.ts" type="module"></script> 13 </body> 14</html>