mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-09-23 15:41:48 +08:00
12 lines
238 B
TypeScript
12 lines
238 B
TypeScript
import { createApp } from 'vue';
|
|
import './styles.less';
|
|
import { createGame } from '@user/entry-client';
|
|
import App from './App.vue';
|
|
|
|
// 创建游戏实例
|
|
createGame();
|
|
createApp(App).mount('#root');
|
|
|
|
main.init('play');
|
|
main.listen();
|