thrive/01_text_adventure/word.h

22 lines
277 B
C
Raw Normal View History

2025-01-12 19:50:11 -05:00
#ifndef _FD_WORD_
#define _FD_WORD_
typedef struct Word Word;
typedef struct Words Words;
#include "game.h"
struct Word {
char *word;
char* synonyms[100];
int synonyms_count;
};
struct Words {
Word words[200];
int count;
};
void game_load_words(Game *g);
#endif