Skip to content

Commit

Permalink
Deploying to main from develop @ 43a843a 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
mizrael committed Aug 19, 2024
0 parents commit 20f3eba
Show file tree
Hide file tree
Showing 183 changed files with 3,264 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
38 changes: 38 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Single Page Apps for GitHub Pages</title>
<script type="text/javascript">
// Single Page Apps for GitHub Pages
// https://github.com/rafrex/spa-github-pages
// Copyright (c) 2016 Rafael Pedicini, licensed under the MIT License
// ----------------------------------------------------------------------
// This script takes the current url and converts the path and query
// string into just a query string, and then redirects the browser
// to the new url with only a query string and hash fragment,
// e.g. http://www.foo.tld/one/two?a=b&c=d#qwe, becomes
// http://www.foo.tld/?p=/one/two&q=a=b~and~c=d#qwe
// Note: this 404.html file must be at least 512 bytes for it to work
// with Internet Explorer (it is currently > 512 bytes)
// If you're creating a Project Pages site and NOT using a custom domain,
// then set segmentCount to 1 (enterprise users may need to set it to > 1).
// This way the code will only replace the route part of the path, and not
// the real directory in which the app resides, for example:
// https://username.github.io/repo-name/one/two?a=b&c=d#qwe becomes
// https://username.github.io/repo-name/?p=/one/two&q=a=b~and~c=d#qwe
// Otherwise, leave segmentCount as 0.
var segmentCount = 0;
var l = window.location;
l.replace(
l.protocol + '//' + l.hostname + (l.port ? ':' + l.port : '') +
l.pathname.split('/').slice(0, 1 + segmentCount).join('/') + '/?p=/' +
l.pathname.slice(1).split('/').slice(segmentCount).join('/').replace(/&/g, '~and~') +
(l.search ? '&q=' + l.search.slice(1).replace(/&/g, '~and~') : '') +
l.hash
);
</script>
</head>
<body>
</body>
</html>
12 changes: 12 additions & 0 deletions _content/Blazorex/blazorex.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.blazorex-canvas-container {
z-index: 1;
position: fixed;
opacity: 1;
background-color: black;
width: 100%;
height: 100%
}

.blazorex-canvas-container.primary {
z-index: 100;
}
109 changes: 109 additions & 0 deletions _content/Blazorex/blazorex.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
window.Blazorex = (() => {
const _contexts = [],
_refs = [],
_patterns = [];

const initCanvas = (id, managedInstance) => {
const canvas = document.getElementById(id);
if (!canvas) {
return;
}



_contexts[id] = {
id: id,
context: canvas.getContext("2d"),
managedInstance
};
}, getRef = (ref) => {
const pId = `_bl_${ref.Id}`,
elem = _refs[pId] || document.querySelector(`[${pId}]`);
_refs[pId] = elem;
return elem;
}, callMethod = (ctx, method, params) => {
for (let p in params) {
if (params[p] != null && params[p].IsRef) {
params[p] = getRef(params[p]);
}
}

const result = ctx[method](...params);
return result;
},
setProperty = (ctx, property, value) => {
const propValue = (property == 'fillStyle' ? _patterns[value] || value : value);
ctx[property] = propValue;
},
onFrameUpdate = (timeStamp) => {
for (let ctx in _contexts) {
_contexts[ctx].managedInstance.invokeMethodAsync('UpdateFrame', timeStamp);
}
window.requestAnimationFrame(onFrameUpdate);
},
processBatch = (rawCtxId, rawBatch) => {
const ctxId = BINDING.conv_string(rawCtxId),
ctx = _contexts[ctxId].context;
if (!ctx) {
return;
}
const jsonBatch = BINDING.conv_string(rawBatch),
batch = JSON.parse(jsonBatch);

for (let i in batch) {
const op = batch[i];
if (op.IsProperty)
setProperty(ctx, op.MethodName, op.Args);
else
callMethod(ctx, op.MethodName, op.Args);
}
},
directCall = (rawCtxId, rawMethodName, rawParams) => {
const ctxId = BINDING.conv_string(rawCtxId),
ctx = _contexts[ctxId].context;
if (!ctx) {
return;
}
const methodName = BINDING.conv_string(rawMethodName),
jParams = BINDING.conv_string(rawParams),
params = JSON.parse(jParams),
result = callMethod(ctx, methodName, params);

if (methodName == 'createPattern') {
const patternId = _patterns.length;
_patterns.push(result);
return BINDING.js_to_mono_obj(patternId);
}

return BINDING.js_to_mono_obj(result);
};

window.onkeyup = (e) => {
for (let ctx in _contexts) {
_contexts[ctx].managedInstance.invokeMethodAsync('KeyReleased', e.keyCode);
}
};
window.onkeydown = (e) => {
for (let ctx in _contexts) {
_contexts[ctx].managedInstance.invokeMethodAsync('KeyPressed', e.keyCode);
}
};
window.onmousemove = (e) => {
const coords = {
X: e.offsetX,
Y: e.offsetY
};
for (let ctx in _contexts) {
_contexts[ctx].managedInstance.invokeMethodAsync('MouseMoved', coords);
}
};

return {
initCanvas,
onFrameUpdate,
processBatch,
directCall
};
})();

window.requestAnimationFrame(Blazorex.onFrameUpdate);
Binary file added _framework/Blazeroids.Core.pdb.gz
Binary file not shown.
Binary file added _framework/Blazeroids.Core.wasm
Binary file not shown.
Binary file added _framework/Blazeroids.Core.wasm.br
Binary file not shown.
Binary file added _framework/Blazeroids.Core.wasm.gz
Binary file not shown.
Binary file added _framework/Blazeroids.Web.pdb.gz
Binary file not shown.
Binary file added _framework/Blazeroids.Web.wasm
Binary file not shown.
Binary file added _framework/Blazeroids.Web.wasm.br
Binary file not shown.
Binary file added _framework/Blazeroids.Web.wasm.gz
Binary file not shown.
Binary file added _framework/Blazorex.wasm
Binary file not shown.
Binary file added _framework/Blazorex.wasm.br
Binary file not shown.
Binary file added _framework/Blazorex.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.AspNetCore.Components.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Logging.wasm
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Logging.wasm.br
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Logging.wasm.gz
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Options.wasm
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Options.wasm.br
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Options.wasm.gz
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Primitives.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.WebAssembly.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.wasm
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.wasm.br
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.wasm.gz
Binary file not shown.
Binary file added _framework/System.Collections.Concurrent.wasm
Binary file not shown.
Binary file added _framework/System.Collections.Concurrent.wasm.br
Binary file not shown.
Binary file added _framework/System.Collections.Concurrent.wasm.gz
Binary file not shown.
Binary file added _framework/System.Collections.wasm
Binary file not shown.
Binary file added _framework/System.Collections.wasm.br
Binary file not shown.
Binary file added _framework/System.Collections.wasm.gz
Binary file not shown.
Binary file added _framework/System.ComponentModel.Primitives.wasm
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.ComponentModel.wasm
Binary file not shown.
Binary file added _framework/System.ComponentModel.wasm.br
Binary file not shown.
Binary file added _framework/System.ComponentModel.wasm.gz
Binary file not shown.
Binary file added _framework/System.Console.wasm
Binary file not shown.
Binary file added _framework/System.Console.wasm.br
Binary file not shown.
Binary file added _framework/System.Console.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.Drawing.Primitives.wasm
Binary file not shown.
Binary file added _framework/System.Drawing.Primitives.wasm.br
Binary file not shown.
Binary file added _framework/System.Drawing.Primitives.wasm.gz
Binary file not shown.
Binary file added _framework/System.Drawing.wasm
Binary file not shown.
Binary file added _framework/System.Drawing.wasm.br
Binary file not shown.
Binary file added _framework/System.Drawing.wasm.gz
Binary file not shown.
Binary file added _framework/System.Linq.wasm
Binary file not shown.
Binary file added _framework/System.Linq.wasm.br
Binary file not shown.
Binary file added _framework/System.Linq.wasm.gz
Binary file not shown.
Binary file added _framework/System.Memory.wasm
Binary file not shown.
Binary file added _framework/System.Memory.wasm.br
Binary file not shown.
Binary file added _framework/System.Memory.wasm.gz
Binary file not shown.
Binary file added _framework/System.Net.Http.Json.wasm
Binary file not shown.
Binary file added _framework/System.Net.Http.Json.wasm.br
Binary file not shown.
Binary file added _framework/System.Net.Http.Json.wasm.gz
Binary file not shown.
Binary file added _framework/System.Net.Http.wasm
Binary file not shown.
Binary file added _framework/System.Net.Http.wasm.br
Binary file not shown.
Binary file added _framework/System.Net.Http.wasm.gz
Binary file not shown.
Binary file added _framework/System.Net.Primitives.wasm
Binary file not shown.
Binary file added _framework/System.Net.Primitives.wasm.br
Binary file not shown.
Binary file added _framework/System.Net.Primitives.wasm.gz
Binary file not shown.
Binary file added _framework/System.Numerics.Vectors.wasm
Binary file not shown.
Binary file added _framework/System.Numerics.Vectors.wasm.br
Binary file not shown.
Binary file added _framework/System.Numerics.Vectors.wasm.gz
Binary file not shown.
Binary file added _framework/System.ObjectModel.wasm
Binary file not shown.
Binary file added _framework/System.ObjectModel.wasm.br
Binary file not shown.
Binary file added _framework/System.ObjectModel.wasm.gz
Binary file not shown.
Binary file added _framework/System.Private.CoreLib.wasm
Binary file not shown.
Binary file added _framework/System.Private.CoreLib.wasm.br
Binary file not shown.
Binary file added _framework/System.Private.CoreLib.wasm.gz
Binary file not shown.
Binary file added _framework/System.Private.Uri.wasm
Binary file not shown.
Binary file added _framework/System.Private.Uri.wasm.br
Binary file not shown.
Binary file added _framework/System.Private.Uri.wasm.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.Runtime.wasm
Binary file not shown.
Binary file added _framework/System.Runtime.wasm.br
Binary file not shown.
Binary file added _framework/System.Runtime.wasm.gz
Binary file not shown.
Binary file added _framework/System.Text.Encodings.Web.wasm
Binary file not shown.
Binary file added _framework/System.Text.Encodings.Web.wasm.br
Binary file not shown.
Binary file added _framework/System.Text.Encodings.Web.wasm.gz
Binary file not shown.
Binary file added _framework/System.Text.Json.wasm
Binary file not shown.
Binary file added _framework/System.Text.Json.wasm.br
Binary file not shown.
Binary file added _framework/System.Text.Json.wasm.gz
Binary file not shown.
Binary file added _framework/System.Text.RegularExpressions.wasm
Binary file not shown.
Binary file added _framework/System.Text.RegularExpressions.wasm.br
Binary file not shown.
Binary file added _framework/System.Text.RegularExpressions.wasm.gz
Binary file not shown.
Binary file added _framework/System.Threading.wasm
Binary file not shown.
Binary file added _framework/System.Threading.wasm.br
Binary file not shown.
Binary file added _framework/System.Threading.wasm.gz
Binary file not shown.
70 changes: 70 additions & 0 deletions _framework/blazor.boot.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
{
"mainAssemblyName": "Blazeroids.Web",
"resources": {
"hash": "sha256-SRBx4cYfeUr1Iq34YAN942jpQQHFE2X/zeb/MRYXg8w=",
"jsModuleNative": {
"dotnet.native.8.0.8.746giovk6l.js": "sha256-juC5sA7gHTLXFEhAKgdM2/RavswpwCtDfjYGsAz2FXg="
},
"jsModuleRuntime": {
"dotnet.runtime.8.0.8.q96huiwmq3.js": "sha256-0Dpj/NkVD5WqSC16ZvJLmlc38iv9+Je+umYBVOycPVU="
},
"wasmNative": {
"dotnet.native.wasm": "sha256-OcUTcd7qQceenWEF93409WZcaXp2qQbEyhdchog4RUE="
},
"icu": {
"icudt_CJK.dat": "sha256-SZLtQnRc0JkwqHab0VUVP7T3uBPSeYzxzDnpxPpUnHk=",
"icudt_EFIGS.dat": "sha256-8fItetYY8kQ0ww6oxwTLiT3oXlBwHKumbeP2pRF4yTc=",
"icudt_no_CJK.dat": "sha256-L7sV7NEYP37/Qr2FPCePo5cJqRgTXRwGHuwF5Q+0Nfs="
},
"assembly": {
"Blazeroids.Core.wasm": "sha256-85OnVPfu8DQkeUm7MxM1iCOHhwOS0Kv5wRrr4eDtgrs=",
"Blazeroids.Web.wasm": "sha256-s1Qm3Pbht9IVdaDqLuXVCcWIOg/3TntUhbb0g9WLLEc=",
"Blazorex.wasm": "sha256-5dWWxyqTx8dSD0sZqKZXBpW41mEAtjA6A54teP7lLeo=",
"Microsoft.AspNetCore.Components.wasm": "sha256-LCO6cu5LsihpSqudUOFqKcPqpYr8Dtx19ja0+nUKgZU=",
"Microsoft.AspNetCore.Components.Web.wasm": "sha256-2rt4NtUKepq1gEfrnuy0srUHuqwqgvV9Anvfo5T7zbY=",
"Microsoft.AspNetCore.Components.WebAssembly.wasm": "sha256-jrdFRjrF1131MZ3HGQVsI3dX8cLdZvPz85lsBltxjSM=",
"Microsoft.Extensions.Configuration.Abstractions.wasm": "sha256-87sn2TYqgdZ95sXmavjKEzoEfMgHnYQ9LOvnMX+aZcI=",
"Microsoft.Extensions.Configuration.Json.wasm": "sha256-Sxmy2ZS134URxbHEvdbS6NcQ3zXS7UWx/5ZPpwiW7FA=",
"Microsoft.Extensions.Configuration.wasm": "sha256-jYqHUZ07UYWc8POk7xhas6xQYH7t1qoTcylqoDqncJk=",
"Microsoft.Extensions.DependencyInjection.Abstractions.wasm": "sha256-TXiPdOm8kYuConlGOu7kNs/wml11gln0IRlxxKUoZ7g=",
"Microsoft.Extensions.DependencyInjection.wasm": "sha256-gg8xZqJsBBrrNEyUGzYqhL3sqkuZ4AHAvdTdL9nZ0S0=",
"Microsoft.Extensions.Logging.Abstractions.wasm": "sha256-+Fgk2a7GOZ76M3YfJ+0IDUowOMx8/LBnDwuIKQr+/IA=",
"Microsoft.Extensions.Logging.wasm": "sha256-8BH+kQfjYuZWxprOICXJ4+tU0OdJOYDKN7G0S3zYYHI=",
"Microsoft.Extensions.Options.wasm": "sha256-ezKJDNjeghS/qMdQmUpBPdH7bCDLrqkNqS6RsLxlpOY=",
"Microsoft.Extensions.Primitives.wasm": "sha256-6187ynEahDlSLMBvD4vAmiLpZ3clRb5xu6rM7O8AxNo=",
"Microsoft.JSInterop.wasm": "sha256-hDw66Gtb8ZJxRCFevkJ0qS/wH43ka9YdsL7TWHJSXuQ=",
"Microsoft.JSInterop.WebAssembly.wasm": "sha256-cmRfaQWGKJgsc9pXGKVje6Vssv/J2soOd9CCt84Idqg=",
"System.Collections.Concurrent.wasm": "sha256-YaOBZiZ5Nvu2ZW8oZNZoHlyRmjgpQCaOarZN0GDlxmQ=",
"System.Collections.wasm": "sha256-4Yw3ML/aAjpwhPa0JfPXF9nf5JhHRLS1Qm5q/ocg0MY=",
"System.ComponentModel.Primitives.wasm": "sha256-DeW1ZsxtZIWAzHBqwtCsSf8XY0fZFmVKNumVCNXjbSI=",
"System.ComponentModel.TypeConverter.wasm": "sha256-OperDCduKxZOg+LlRjDpNHNTIhjvEovTTSxwKt2jpec=",
"System.ComponentModel.wasm": "sha256-GPAg/lqvtlGqfal3j6EPgQ+6mqlusQ30qCeS8LYv8ws=",
"System.Console.wasm": "sha256-6rqfq9FG8xCd3xSLcnTzsbJTHbqwnis/iKFw1GGOF+E=",
"System.Diagnostics.DiagnosticSource.wasm": "sha256-4ubU4co0v0r/wAmsWTqNrvLm48HGP4mqFllX6prk7ac=",
"System.Drawing.Primitives.wasm": "sha256-AbhYUPDhiqhejDip8/0ru0lFrjwEXWhZgEL/KK3sTDc=",
"System.Drawing.wasm": "sha256-bTzVjt3gdGx5zhkDjPuTNQwXwTAtVvkjYmHy1OBt0fE=",
"System.Linq.wasm": "sha256-TuS5Z9LnP8lEZ7CYX0aGfPb4KvGdboNYw8SgOLsgzmU=",
"System.Memory.wasm": "sha256-6/G11vxTbcriqPUK7g+vWDhKlVduFde+WxaUB0NL0z4=",
"System.Net.Http.Json.wasm": "sha256-3bW8kRcdjuU6qJ4KfJtKvffShSQtAgTeL7ouij6KeBQ=",
"System.Net.Http.wasm": "sha256-XqiXiwjI/CAD/yARtGzeJ+rTkedmQKJxmWxalMm65jE=",
"System.Net.Primitives.wasm": "sha256-j3A7SN1Wpd95yFTPPq1YD+PxIDYicARL6W3t8sMPhFI=",
"System.Numerics.Vectors.wasm": "sha256-f3nKcSsu6Tq2IBBcGYjdzTNA/hNhQP2ElUZrJ0Emavk=",
"System.ObjectModel.wasm": "sha256-DRBo9NpOZgLKvUOKH4nM+fUfyhIKHrXpK4fxhpMLS+A=",
"System.Private.CoreLib.wasm": "sha256-rFxX4eOwluMku1oswDoqQ4XoR0i+sv4VBBobe4uK36w=",
"System.Private.Uri.wasm": "sha256-CfQMrEX3TS1+yFeShuhMp1/ItLPwxGUBZH5QseqFQzo=",
"System.Runtime.InteropServices.JavaScript.wasm": "sha256-rXNWJxdH8tME4a+ZYwP7wellel8Xp4lVPsbIQmC+ImE=",
"System.Runtime.wasm": "sha256-JYG/FHGtlV3YK0r5XpaXL3HdCT/Us94ENLwsrTdsRFQ=",
"System.Text.Encodings.Web.wasm": "sha256-MCv+5sGwYGikJ8D76raGF6L+02exyJcFgx2sVlUjmKk=",
"System.Text.Json.wasm": "sha256-ZA8/YlIgRs38gpZB6XQvGLATVSxSOUN7QL2VawqakjU=",
"System.Text.RegularExpressions.wasm": "sha256-8bujMNUMCuxn48zxE7AA6YYcbZJjv76LHEAtNjS6TuE=",
"System.Threading.wasm": "sha256-/sB9Aucuch2CQz4pnfsZuu5jossTPJjDZbDvKQuEVek="
}
},
"cacheBootResources": true,
"debugLevel": 0,
"linkerEnabled": true,
"globalizationMode": "sharded",
"extensions": {
"blazor": {}
}
}
Binary file added _framework/blazor.boot.json.br
Binary file not shown.
Binary file added _framework/blazor.boot.json.gz
Binary file not shown.
1 change: 1 addition & 0 deletions _framework/blazor.webassembly.js

Large diffs are not rendered by default.

Binary file added _framework/blazor.webassembly.js.br
Binary file not shown.
Binary file added _framework/blazor.webassembly.js.gz
Binary file not shown.
4 changes: 4 additions & 0 deletions _framework/dotnet.js

Large diffs are not rendered by default.

Binary file added _framework/dotnet.js.br
Binary file not shown.
Binary file added _framework/dotnet.js.gz
Binary file not shown.
17 changes: 17 additions & 0 deletions _framework/dotnet.native.8.0.8.746giovk6l.js

Large diffs are not rendered by default.

Binary file added _framework/dotnet.native.8.0.8.746giovk6l.js.br
Binary file not shown.
Binary file added _framework/dotnet.native.8.0.8.746giovk6l.js.gz
Binary file not shown.
Binary file added _framework/dotnet.native.wasm
Binary file not shown.
Binary file added _framework/dotnet.native.wasm.br
Binary file not shown.
Binary file added _framework/dotnet.native.wasm.gz
Binary file not shown.
4 changes: 4 additions & 0 deletions _framework/dotnet.runtime.8.0.8.q96huiwmq3.js

Large diffs are not rendered by default.

Binary file added _framework/dotnet.runtime.8.0.8.q96huiwmq3.js.br
Binary file not shown.
Binary file added _framework/dotnet.runtime.8.0.8.q96huiwmq3.js.gz
Binary file not shown.
Binary file added _framework/icudt_CJK.dat
Binary file not shown.
Binary file added _framework/icudt_CJK.dat.br
Binary file not shown.
Binary file added _framework/icudt_CJK.dat.gz
Binary file not shown.
Binary file added _framework/icudt_EFIGS.dat
Binary file not shown.
Binary file added _framework/icudt_EFIGS.dat.br
Binary file not shown.
Binary file added _framework/icudt_EFIGS.dat.gz
Binary file not shown.
Binary file added _framework/icudt_no_CJK.dat
Binary file not shown.
Binary file added _framework/icudt_no_CJK.dat.br
Binary file not shown.
Binary file added _framework/icudt_no_CJK.dat.gz
Binary file not shown.
1 change: 1 addition & 0 deletions assets/animations/explosions.json

Large diffs are not rendered by default.

42 changes: 42 additions & 0 deletions assets/assets.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[
{
"path": "assets/sheet.json",
"type": "spritesheet"
},
{
"path": "assets/animations/explosions.json",
"type": "animations"
},
{
"path": "assets/backgrounds/blue.png",
"type": "sprite",
"properties": {
"width": 256,
"height": 256
}
},
{
"path": "assets/sounds/main-theme.ogg",
"type": "sound",
"properties": {
"type": "audio/ogg",
"name": "main-theme"
}
},
{
"path": "assets/sounds/explosion.ogg",
"type": "sound",
"properties": {
"type": "audio/ogg",
"name": "explosion"
}
},
{
"path": "assets/sounds/laser.ogg",
"type": "sound",
"properties": {
"type": "audio/ogg",
"name": "laser"
}
}
]
Binary file added assets/backgrounds/black.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 assets/backgrounds/blue.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 assets/backgrounds/darkPurple.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 assets/backgrounds/purple.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 20f3eba

Please sign in to comment.