18 lines
508 B
HTML
18 lines
508 B
HTML
<html>
|
|
<body>
|
|
<script>
|
|
window.RufflePlayer = window.RufflePlayer || {};
|
|
window.addEventListener("load", (event) => {
|
|
const ruffle = window.RufflePlayer.newest();
|
|
const player = ruffle.createPlayer();
|
|
const container = document.getElementById("container");
|
|
container.appendChild(player);
|
|
player.load("Breaking The Bank.swf");
|
|
});
|
|
</script>
|
|
<script src="/games/henreystikman/ruffle.js"></script>
|
|
|
|
|
|
</body>
|
|
|
|
</html> |