10 lines
189 B
JavaScript
10 lines
189 B
JavaScript
|
|
import GameModel from "./model.js";
|
||
|
|
import GameView from "./view.js";
|
||
|
|
import GameController from "./controller.js";
|
||
|
|
|
||
|
|
const app = new GameController(
|
||
|
|
new GameModel(),
|
||
|
|
new GameView()
|
||
|
|
);
|
||
|
|
|