10 lines
167 B
JavaScript
10 lines
167 B
JavaScript
import * as game from './index.mjs';
|
|
import * as graphics from '../graphics/index.mjs';
|
|
|
|
export function init() {
|
|
graphics.setZoom(20);
|
|
}
|
|
|
|
export function end() {
|
|
|
|
}
|