-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 1.49 KB
/
Copy pathindex.html
File metadata and controls
30 lines (28 loc) · 1.49 KB
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" />
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>frogsprite</title>
<meta
name="description"
content="Pixel-sprite editor driveable from JavaScript. Agents: see /AGENTS.md and the window.frogsprite API."
/>
</head>
<body>
<!--
── FOR AI AGENTS ────────────────────────────────────────────────────────
This editor is designed to be driven by you, not just clicked by a human.
Every feature is a JavaScript call on the global `window.frogsprite`.
frogsprite.help() command list and a quick start, right in the page
/AGENTS.md core command reference (palette, shapes, painting, inspection)
/docs/*.md deep reference: layers, isometric, animation, export, importing
/llms.txt site index and quick start
Nothing is saved to a server; work lives in localStorage for this origin.
─────────────────────────────────────────────────────────────────────────
-->
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>