forked from TALCo-Team/CodeColosseumDesktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mock-create-match.ts
44 lines (41 loc) · 880 Bytes
/
mock-create-match.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import { GameDetails } from "src/app/services/api-service/api.service";
export const CREATE_GAMES:GameDetails[] = [
{
game_description:{
game_name: "royalur",
game_descr: ""
},
game_params:{
players:2,
bots:1,
timeout:10.0
},
args:[
{
name:"pace",
value:"1.5"
}
]
},
{
game_description:{
game_name: "roshambo",
game_descr: ""
},
game_params:{
players:2,
bots:0,
timeout:100.0
},
args:[
{
name:"rounds",
value:"10"
},
{
name:"pace",
value:"1.5"
}
]
},
]