diff --git a/compile.hxml b/compile.hxml index 8433cd84..0d5f3c68 100644 --- a/compile.hxml +++ b/compile.hxml @@ -1,8 +1,10 @@ -cp src -lib heaps -lib hlsdl +-lib zyheaps -hl marblegame.hl -D windowSize=1280x720 -D keep-inline-positions +-D android --main Main -debug \ No newline at end of file diff --git a/data/icon.png b/data/icon.png new file mode 100644 index 00000000..9ab8b6ba Binary files /dev/null and b/data/icon.png differ diff --git a/data/icons/icon-128.png b/data/icons/icon-128.png new file mode 100644 index 00000000..9ab8b6ba Binary files /dev/null and b/data/icons/icon-128.png differ diff --git a/data/icons/icon-144.png b/data/icons/icon-144.png new file mode 100644 index 00000000..cb343333 Binary files /dev/null and b/data/icons/icon-144.png differ diff --git a/data/icons/icon-180.png b/data/icons/icon-180.png new file mode 100644 index 00000000..0824a9f5 Binary files /dev/null and b/data/icons/icon-180.png differ diff --git a/data/icons/icon-192.png b/data/icons/icon-192.png new file mode 100644 index 00000000..726db63c Binary files /dev/null and b/data/icons/icon-192.png differ diff --git a/data/icons/icon-256.png b/data/icons/icon-256.png new file mode 100644 index 00000000..d85c93e0 Binary files /dev/null and b/data/icons/icon-256.png differ diff --git a/data/icons/icon-32.png b/data/icons/icon-32.png new file mode 100644 index 00000000..1f054d52 Binary files /dev/null and b/data/icons/icon-32.png differ diff --git a/data/icons/icon-48.png b/data/icons/icon-48.png new file mode 100644 index 00000000..a3680fb3 Binary files /dev/null and b/data/icons/icon-48.png differ diff --git a/data/icons/icon-512.png b/data/icons/icon-512.png new file mode 100644 index 00000000..dcadd73f Binary files /dev/null and b/data/icons/icon-512.png differ diff --git a/data/icons/icon-64.png b/data/icons/icon-64.png new file mode 100644 index 00000000..26f9b99f Binary files /dev/null and b/data/icons/icon-64.png differ diff --git a/data/icons/icon-96.png b/data/icons/icon-96.png new file mode 100644 index 00000000..efd801a7 Binary files /dev/null and b/data/icons/icon-96.png differ diff --git a/data/manifest.json b/data/manifest.json new file mode 100644 index 00000000..37621866 --- /dev/null +++ b/data/manifest.json @@ -0,0 +1,68 @@ +{ + "name": "Marble Blast Gold Haxe Port", + "short_name": "Marble Blast Gold", + "description": "A reimplementation of Marble Blast Gold in Haxe", + "dir": "ltr", + "start_url": "/index.html?app=true", + "scope": "/", + "display": "fullscreen", + "orientation": "landscape", + "background_color": "black", + "theme_color": "black", + "categories": [ + "games" + ], + "lang": "en-US", + "icons": [ + { + "src": "/data/icons/icon-512.png", + "type": "image/png", + "sizes": "512x512" + }, + { + "src": "/data/icons/icon-256.png", + "type": "image/png", + "sizes": "256x256" + }, + { + "src": "/data/icons/icon-192.png", + "type": "image/png", + "sizes": "192x192" + }, + { + "src": "/data/icons/icon-180.png", + "type": "image/png", + "sizes": "180x180" + }, + { + "src": "/data/icons/icon-144.png", + "type": "image/png", + "sizes": "144x144" + }, + { + "src": "/data/icons/icon-128.png", + "type": "image/png", + "sizes": "128x128" + }, + { + "src": "/data/icons/icon-96.png", + "type": "image/png", + "sizes": "96x96" + }, + { + "src": "/data/icons/icon-64.png", + "type": "image/png", + "sizes": "64x64" + }, + { + "src": "/data/icons/icon-48.png", + "type": "image/png", + "sizes": "48x48" + }, + { + "src": "/data/icons/icon-32.png", + "type": "image/png", + "sizes": "32x32" + } + ] +} \ No newline at end of file diff --git a/index.html b/index.html index 63c5e611..c3c0d731 100644 --- a/index.html +++ b/index.html @@ -4,6 +4,9 @@