Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add files via upload
  • Loading branch information
eml17028 committed May 11, 2019
1 parent 0d859f0 commit 55f61e7
Show file tree
Hide file tree
Showing 47 changed files with 2,950 additions and 0 deletions.
41 changes: 41 additions & 0 deletions DreamBeanFinal/appmanifest.json
@@ -0,0 +1,41 @@
{
"name": "Dream Bean",
"short_name": "Dream Bean",
"description": "",
"start_url": "index.html",
"display": "fullscreen",
"orientation": "landscape",
"background_color": "#ffffff",
"icons": [
{
"src": "icons/icon-16.png",
"sizes": "16x16",
"type": "image/png"
},
{
"src": "icons/icon-32.png",
"sizes": "32x32",
"type": "image/png"
},
{
"src": "icons/icon-64.png",
"sizes": "64x64",
"type": "image/png"
},
{
"src": "icons/icon-128.png",
"sizes": "128x128",
"type": "image/png"
},
{
"src": "icons/icon-256.png",
"sizes": "256x256",
"type": "image/png"
},
{
"src": "icons/icon-512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}
1 change: 1 addition & 0 deletions DreamBeanFinal/data.json

Large diffs are not rendered by default.

Binary file added DreamBeanFinal/icons/icon-128.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DreamBeanFinal/icons/icon-16.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DreamBeanFinal/icons/icon-256.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DreamBeanFinal/icons/icon-32.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DreamBeanFinal/icons/icon-512.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DreamBeanFinal/icons/icon-64.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DreamBeanFinal/icons/loading-logo.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DreamBeanFinal/images/dirt_hiding-sheet0.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DreamBeanFinal/images/dirt_solid-sheet0.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DreamBeanFinal/images/dirt_solid-sheet1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DreamBeanFinal/images/mugsy-sheet0.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DreamBeanFinal/images/mugsy-sheet1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DreamBeanFinal/images/mugsy-sheet2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DreamBeanFinal/images/mugsy-sheet3.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DreamBeanFinal/images/player-sheet0.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DreamBeanFinal/images/shared-0-sheet0.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DreamBeanFinal/images/shared-0-sheet1.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DreamBeanFinal/images/shared-0-sheet2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DreamBeanFinal/images/shared-0-sheet3.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DreamBeanFinal/images/shared-0-sheet4.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DreamBeanFinal/images/shared-0-sheet5.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DreamBeanFinal/images/shared-0-sheet6.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions DreamBeanFinal/index.html
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Dream Bean</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">

<link rel="manifest" href="appmanifest.json">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="apple-touch-icon" sizes="128x128" href="icons/icon-128.png">
<link rel="apple-touch-icon" sizes="256x256" href="icons/icon-256.png">
<link rel="apple-touch-icon" sizes="512x512" href="icons/icon-512.png">
<link rel="icon" type="image/png" href="icons/icon-512.png">

<link rel="stylesheet" href="style.css">

</head>
<body>
<div id="fb-root"></div>

<noscript>
<div id="notSupportedWrap">
<h2 id="notSupportedTitle">This content requires JavaScript</h2>
<p class="notSupportedMessage">JavaScript appears to be disabled. Please enable it to view this content.</p>
<p class="notSupportedMessage">This content was developed with Construct, an <a href="https://www.construct.net/en">online game maker</a>.</p>
</div>
</noscript>
<script src="scripts/supportCheck.js"></script>
<script src="scripts/offlineClient.js"></script>
<script src="scripts/main.js"></script>
<script src="scripts/register-sw.js"></script>
</body>
</html>
Binary file not shown.
Binary file added DreamBeanFinal/media/airdash.webm
Binary file not shown.
Binary file added DreamBeanFinal/media/coffe shop 2.webm
Binary file not shown.
Binary file added DreamBeanFinal/media/coffee shop 3.webm
Binary file not shown.
Binary file added DreamBeanFinal/media/coffee shop.webm
Binary file not shown.
Binary file added DreamBeanFinal/media/jump.mp3
Binary file not shown.
Binary file added DreamBeanFinal/media/platform1.webm
Binary file not shown.
Binary file added DreamBeanFinal/media/platform2.webm
Binary file not shown.
Binary file added DreamBeanFinal/media/platform3.webm
Binary file not shown.
1 change: 1 addition & 0 deletions DreamBeanFinal/offline.json
@@ -0,0 +1 @@
{"version":1557545569953,"fileList":["scripts/c3runtime.js","data.json","style.css","scripts/offlineClient.js","images/dirt_solid-sheet0.png","images/dirt_solid-sheet1.png","images/player-sheet0.png","images/shared-0-sheet0.png","images/shared-0-sheet1.png","images/dirt_hiding-sheet0.png","images/shared-0-sheet4.png","images/mugsy-sheet2.png","images/mugsy-sheet3.png","images/shared-0-sheet2.png","images/shared-0-sheet3.png","images/mugsy-sheet0.png","images/mugsy-sheet1.png","images/shared-0-sheet5.png","images/shared-0-sheet6.png","scripts/opus.wasm.js","scripts/opus.wasm.wasm","scripts/main.js","scripts/dispatchWorker.js","scripts/jobWorker.js","scripts/workerMain.js","scripts/supportCheck.js","media/jump.mp3","media/airdash.webm","media/72197__shall555__sh-shop-door-bell-openclose.webm","media/platform1.webm","media/coffe shop 2.webm","media/coffee shop 3.webm","media/coffee shop.webm","media/platform3.webm","media/platform2.webm","icons/icon-512.png","icons/icon-16.png","icons/icon-32.png","icons/icon-128.png","icons/icon-256.png","icons/icon-64.png","icons/loading-logo.png","scripts/register-sw.js"]}
872 changes: 872 additions & 0 deletions DreamBeanFinal/scripts/c3runtime.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions DreamBeanFinal/scripts/dispatchWorker.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions DreamBeanFinal/scripts/jobWorker.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions DreamBeanFinal/scripts/main.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions DreamBeanFinal/scripts/offlineClient.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 55f61e7

Please sign in to comment.