Skip to content

Commit

Permalink
deploy: e77cba2
Browse files Browse the repository at this point in the history
  • Loading branch information
Geokureli committed May 9, 2024
0 parents commit 3c4e02d
Show file tree
Hide file tree
Showing 17 changed files with 2,215 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
Empty file added assets/data/data-goes-here.txt
Empty file.
Empty file.
Empty file.
Empty file.
Binary file added favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added flixel/fonts/monsterrat.ttf
Binary file not shown.
Binary file added flixel/fonts/nokiafc22.ttf
Binary file not shown.
Binary file added flixel/images/logo/default.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added flixel/images/ui/button.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added flixel/sounds/beep.mp3
Binary file not shown.
Binary file added flixel/sounds/beep.ogg
Binary file not shown.
Binary file added flixel/sounds/flixel.mp3
Binary file not shown.
Binary file added flixel/sounds/flixel.ogg
Binary file not shown.
2,158 changes: 2,158 additions & 0 deletions game-jam-template.js

Large diffs are not rendered by default.

56 changes: 56 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
<!DOCTYPE html>
<html lang="en">
<head>

<meta charset="utf-8">

<title>game-jam-template</title>

<meta id="viewport" name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes">


<link rel="shortcut icon" type="image/png" href="./favicon.png">


<script type="text/javascript" src="./game-jam-template.js"></script>

<script>
window.addEventListener ("touchmove", function (event) { event.preventDefault (); }, { capture: false, passive: false });
if (typeof window.devicePixelRatio != 'undefined' && window.devicePixelRatio > 2) {
var meta = document.getElementById ("viewport");
meta.setAttribute ('content', 'width=device-width, initial-scale=' + (2 / window.devicePixelRatio) + ', user-scalable=no');
}
</script>

<style>
html,body { margin: 0; padding: 0; height: 100%; overflow: hidden; }
#openfl-content { background: #000000; width: 640px; height: 480px; }
@font-face {
font-family: 'Nokia Cellphone FC Small';
src: url('flixel/fonts/nokiafc22.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Monsterrat';
src: url('flixel/fonts/monsterrat.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}

</style>

</head>
<body>

<noscript>This webpage makes extensive use of JavaScript. Please enable JavaScript in your web browser to view this page.</noscript>

<div id="openfl-content"></div>

<script type="text/javascript">
lime.embed ("game-jam-template", "openfl-content", 640, 480, { parameters: {} });
</script>

</body>
</html>
1 change: 1 addition & 0 deletions manifest/default.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":null,"assets":"aoy4:pathy36:assets%2Fsounds%2Fsounds-go-here.txty4:sizezy4:typey4:TEXTy2:idR1y7:preloadtgoR0y34:assets%2Fdata%2Fdata-goes-here.txtR2zR3R4R5R7R6tgoR0y36:assets%2Fmusic%2Fmusic-goes-here.txtR2zR3R4R5R8R6tgoR0y36:assets%2Fimages%2Fimages-go-here.txtR2zR3R4R5R9R6tgoR2i39706R3y5:MUSICR5y28:flixel%2Fsounds%2Fflixel.mp3y9:pathGroupaR11y28:flixel%2Fsounds%2Fflixel.ogghR6tgoR2i8220R3R10R5y26:flixel%2Fsounds%2Fbeep.mp3R12aR14y26:flixel%2Fsounds%2Fbeep.ogghR6tgoR2i6840R3y5:SOUNDR5R15R12aR14R15hgoR2i33629R3R16R5R13R12aR11R13hgoR2i15744R3y4:FONTy9:classNamey35:__ASSET__flixel_fonts_nokiafc22_ttfR5y30:flixel%2Ffonts%2Fnokiafc22.ttfR6tgoR2i29724R3R17R18y36:__ASSET__flixel_fonts_monsterrat_ttfR5y31:flixel%2Ffonts%2Fmonsterrat.ttfR6tgoR0y33:flixel%2Fimages%2Fui%2Fbutton.pngR2i277R3y5:IMAGER5R23R6tgoR0y36:flixel%2Fimages%2Flogo%2Fdefault.pngR2i505R3R24R5R25R6tgh","rootPath":null,"version":2,"libraryArgs":[],"libraryType":null}

0 comments on commit 3c4e02d

Please sign in to comment.