Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/lib/gmaes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,14 @@ const gmaes: Gmae[] = [
tags: [],
links: [],
url: '/_app/tools/the-final-earth/index.html'
},
{
name: 'This is the only level',
description: 'do the same thing over and over again (but not)',
category: 'Uncategorized',
tags: [],
links: [],
url: '/_app/tools/thisistheonlylevel/index.html'
}
];

Expand Down
Binary file not shown.
26 changes: 26 additions & 0 deletions static/_app/tools/thisistheonlylevel/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>This Is The Only Level | 3kh0</title>
<link rel="icon" type="image/x-icon" href="thisistheonlylevel.png" />
<link rel="shortcut icon" type="image/x-icon" href="thisistheonlylevel.png" />
</head>
<body>
<script src="/js/main.js"></script>
<div id="ruffle" width="100%" height="100%"></div>
<script src="ruffle.js"></script>
<script>
window.RufflePlayer = window.RufflePlayer || {};
window.addEventListener("load", (event) => {
const ruffle = window.RufflePlayer.newest();
const player = ruffle.createPlayer();
const container = document.getElementById("ruffle");
player.id = "player";
player.style.width = "100%";
player.style.height = "100%";
container.appendChild(player);
player.load("thisistheonlylevel.swf");
});
</script>
</body>
</html>
2 changes: 2 additions & 0 deletions static/_app/tools/thisistheonlylevel/ruffle.js

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading