-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 861 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=900, initial-scale=1.0" />
<title>Entity Component System Animation Engine - Gaston Morixe</title>
</head>
<body>
<main>
<h1>Entity Component System (ECS)</h1>
<h2>Physics Animation Engine (WIP)</h2>
<p>
by <a href="http://gastonmorixe.com">Gaston Morixe</a> 2024
<a
href="https://github.com/gastonmorixe/ecs-animation-engine"
target="_blank"
>Github Repo</a
>
- MIT
</p>
</main>
<div id="box1" class="box">1</div>
<div id="box2" class="box">2</div>
<div id="box3" class="box">3</div>
<div id="chart-container">
<canvas id="chart"></canvas>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>