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

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)
}