Add favicon
This commit is contained in:
parent
6a67a73c59
commit
56a09f98c5
5 changed files with 114 additions and 0 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue