Add favicon

This commit is contained in:
asraelite 2018-03-03 11:50:06 +00:00
parent 6a67a73c59
commit 56a09f98c5
5 changed files with 114 additions and 0 deletions

107
dist/img/celestials/green_0.svg vendored Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 50 KiB

BIN
dist/img/favicon.ico vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

BIN
dist/img/favicon_0.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

1
dist/index.html vendored
View file

@ -4,6 +4,7 @@
<head>
<script src="improcket.min.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css">
<link rel="icon" href="/img/favicon.ico">
</head>
<body>

View file

@ -1,5 +1,6 @@
import Ship from './ship.mjs';
import Module from './module.mjs';
import Celestial from './ship.mjs';
import {modules} from '../data.mjs';
import * as world from './index.mjs';
@ -11,3 +12,8 @@ export function player() {
world.ships.add(ship);
world.setPlayerShip(ship);
}
// Make module length = 1, define all other length off that.
export function celestial() {
let celestial = new Celestial(0, 50, 45)
}