Files
warOfCoins/app.js
2025-12-07 22:53:46 +08:00

12 lines
194 B
JavaScript

// app.js
App({
onLaunch: function () {
console.log('应用启动');
},
globalData: {
selectedEvent: null,
selectedStrategies: [],
currentRound: 0,
maxRounds: 3
}
})