feinschliff

This commit is contained in:
Philipp Messner 2025-11-11 10:29:07 +01:00
parent f2ee8341d3
commit 212d6990dc
6 changed files with 5 additions and 7 deletions

BIN
Start_Mac/game.o Normal file

Binary file not shown.

BIN
Start_Mac/graphicalGame.o Normal file

Binary file not shown.

BIN
Start_Mac/input.o Normal file

Binary file not shown.

View File

@ -44,13 +44,11 @@ int main(int argc, char *argv[])
// Aktivieren durch -DSTART_GRAPHICS beim Kompilieren
// und wenn in graphicalGame.h eine passende Funktion existiert.
#ifdef START_GRAPHICS
// Beispiel-Signatur bitte ggf. an deine API anpassen:
// void startGraphicalGame(const char field[][MAX_SEARCH_FIELD_LEN], unsigned int size,
// const char words[][MAX_WORD_LEN], unsigned int wordCount);
startGraphicalGame((const char (*)[MAX_SEARCH_FIELD_LEN])wordSalad,
SALAD_SIZE,
(const char (*)[MAX_WORD_LEN])words,
wordCount);
startGame((const char (*)[MAX_SEARCH_FIELD_LEN])wordSalad,
SALAD_SIZE,
words,
wordCount,
800);
#endif
} else {
fprintf(stderr, "[FEHLER] Nur %u von %u Wörtern konnten platziert werden.\n",

BIN
Start_Mac/main.o Normal file

Binary file not shown.

BIN
Start_Mac/wordsalad Executable file

Binary file not shown.