HumanBreak/src/main.ts
2025-09-01 23:21:01 +08:00

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();