7 lines
117 B
JavaScript
7 lines
117 B
JavaScript
import * as world from '../world/index.mjs';
|
|
|
|
export let ship;
|
|
|
|
export function init() {
|
|
ship = world.playerShip;
|
|
}
|