fix boss tank cross brick

This commit is contained in:
jakciehan
2026-06-07 22:08:00 +08:00
parent c3a4aa8f15
commit e4140f073f
29 changed files with 2689 additions and 1240 deletions
+16
View File
@@ -0,0 +1,16 @@
/**
* Team2v2RoomScene.js
* 2v2 Brawl team room — delegates to the shared TeamRoomSceneFactory.
*/
const { createTeamRoomScene } = require('./TeamRoomSceneFactory');
const Team2v2RoomScene = createTeamRoomScene({
teamSize: 2,
battleMode: '2v2',
i18nPrefix: 'team2v2Room',
logTag: 'Team2v2Room',
shareImageUrl: 'js/ui/images/2v2.png',
});
module.exports = Team2v2RoomScene;