forked from victorqribeiro/aimAndShoot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
30 lines (30 loc) · 1.01 KB
/
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=device-width, initial-scale=1.0" />
<title>Aim and Shoot (ECS Remaster)</title>
<meta name="twitter:card" content="summary_large_image" />
<meta
property="og:url"
content="https://flyskypie.github.io/aimAndShoot"
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="Aim and Shoot (ECS Remaster)" />
<meta property="og:image" content="https://raw.githubusercontent.com/FlySkyPie/aimAndShoot/main/img/00_hero.webp" />
<meta
property="og:description"
content="A neuroevolution game experiment. (And ECS)"
/>
<meta property="article:author" content="https://github.com/FlySkyPie" />
<meta
property="article:tag"
content="web, canvas, game, AI, ECS"
/>
</head>
<body>
<!-- <combat-panel></combat-panel> -->
<div id="app"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>