Add favicon
This commit is contained in:
parent
6a67a73c59
commit
56a09f98c5
5 changed files with 114 additions and 0 deletions
107
dist/img/celestials/green_0.svg
vendored
Normal file
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
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
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
1
dist/index.html
vendored
|
@ -4,6 +4,7 @@
|
||||||
<head>
|
<head>
|
||||||
<script src="improcket.min.js"></script>
|
<script src="improcket.min.js"></script>
|
||||||
<link rel="stylesheet" type="text/css" href="styles.css">
|
<link rel="stylesheet" type="text/css" href="styles.css">
|
||||||
|
<link rel="icon" href="/img/favicon.ico">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
import Ship from './ship.mjs';
|
import Ship from './ship.mjs';
|
||||||
import Module from './module.mjs';
|
import Module from './module.mjs';
|
||||||
|
import Celestial from './ship.mjs';
|
||||||
import {modules} from '../data.mjs';
|
import {modules} from '../data.mjs';
|
||||||
import * as world from './index.mjs';
|
import * as world from './index.mjs';
|
||||||
|
|
||||||
|
@ -11,3 +12,8 @@ export function player() {
|
||||||
world.ships.add(ship);
|
world.ships.add(ship);
|
||||||
world.setPlayerShip(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