diff --git a/src/main.c b/src/main.c index 10d4f1b..226a0f6 100644 --- a/src/main.c +++ b/src/main.c @@ -749,11 +749,37 @@ int main() } }; - Category categories[4] = {fussball, kunst, rechnen}; + Question allgQst1 = {.question = "Wie heißt die Hauptstadt von Frankreich?", .answer = "Paris"}; + Question allgQst2 = {.question = "Wie heißt die Hauptstadt von Deutschland?", .answer = "Berlin"}; + Question allgQst3 = {.question = "Wie heißt die Hauptstadt von Japan?", .answer = "Tokio"}; + + + Level allgLevel1 = + { + .questions = + { + allgQst1, allgQst2, allgQst3 + }, + .size = 3 // size = anzahl an Fragen + }; + + + + Category allgemein = + { + .size = 1, // size = Anzahl Level + .name = "Allgemein", + .lvlQuestions = + { + allgLevel1 + } + }; + + Category categories[4] = {fussball, kunst, rechnen, allgemein}; printf("Willkommen beim Quiz-Spiel! Beantworten Sie die folgenden Fragen:\n"); - int catCount = 3; // anzahl an kategorien + int catCount = 4; // anzahl an kategorien char input[256]; startGame(catCount, input, categories);