Second game

This commit is contained in:
Mediha Zukic
2017-05-20 16:43:03 +03:00
parent 449b69ba71
commit e3875c8248
86 changed files with 42202 additions and 711 deletions

View File

@@ -27,9 +27,28 @@
TELEVIZOR,
DIMNJAK,
AUTO,
RUCNO_PRANJE_VESA
RUCNO_PRANJE_VESA,
STEDNA_SIJALICA,
STRUJA,
SOLARNI_PANEL,
PAPIRI,
EMAIL,
KANTA_ZA_SMECE,
FRIZIDER,
FRIZIDER_PLUS,
TERMOSTAT_28,
TAMNA_FASADA,
SVIJETLA_FASADA,
PLASTICNA_KESA,
CEKER,
SUSILICA,
PROZOR_BEZ_ROLETNE
};
public class Answer
{
public Answer(AnswerObjectModel model, string caption)
@@ -55,10 +74,10 @@ public class Answer
public class Question
{
public Question(string question, int [] correctAns)
public Question(int [] correctAns, Answer[] possibleAns)
{
questionText = question;
correctAnswers = correctAns;
possibleAnswers = possibleAns;
}
public Question(string question, int[] correctAns, Answer[] possibleAns)