-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgame.json
47 lines (47 loc) · 1.18 KB
/
game.json
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
45
46
47
{
"gameName": "My game",
"gameDescription": "description",
"minLevel": 10,
"language": "PL",
"questions": [
{
"questionText": "Do You like flowers?",
"typeID": 1,
"image": "",
"needDefaultAnswer": 1,
"answers": [
{
"answerText": "Yes",
"answerImage": ""
},
{
"answerText": "No",
"answerImage": ""
}
]
},
{
"questionText": "What is it?",
"typeID": 2,
"image": "flower.png",
"needDefaultAnswer": 1,
"answers": [
{
"answerText": "Flower",
"answerImage": "flower.png"
},
{
"answerText": "Not flower",
"answerImage": "flower.png"
}
]
},
{
"questionText": "What do you think?",
"typeID": 3,
"image": "",
"needDefaultAnswer": 0,
"answers": []
}
]
}