changed mocks/gamemode, added param players

This commit is contained in:
Kostya
2023-11-15 22:14:13 +03:00
parent 549757ad29
commit a1c39b7e22

View File

@@ -1,22 +1,27 @@
export default [ export default [
{ {
id: 1, id: 1,
title: 'slots' title: 'slots',
players: 0
}, },
{ {
id: 2, id: 2,
title: 'double game' title: 'double game',
players: 0
}, },
{ {
id: 3, id: 3,
title: 'crash game' title: 'crash game',
players: 0
}, },
{ {
id: 4, id: 4,
title: 'jackpot game' title: 'jackpot game',
players: 0
}, },
{ {
id: 5, id: 5,
title: 'mines game' title: 'mines game',
players: 0
} }
] ]