Switch to rollup for bundling
This commit is contained in:
parent
fc8d282509
commit
cfe9c55c9a
16 changed files with 131 additions and 7 deletions
13
js/gui/modules.mjs
Normal file
13
js/gui/modules.mjs
Normal file
|
@ -0,0 +1,13 @@
|
|||
import * as gui from './index.mjs';
|
||||
import {canvas} from '../graphics/index.mjs';
|
||||
import GuiFrame from './frame.mjs';
|
||||
|
||||
export function root() {
|
||||
return new GuiFrame(0, 0, canvas.width, canvas.height, {
|
||||
draw: false
|
||||
});
|
||||
}
|
||||
|
||||
export function titleScreen() {
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue