thrive/01_text_adventure/flag.h
2025-01-13 19:37:38 -05:00

23 lines
282 B
C

#ifndef _FD_FLAG_
#define _FD_FLAG_
typedef struct Flag Flag;
typedef struct Flags Flags;
#include "game.h"
struct Flag {
char *key;
int value;
};
struct Flags {
Flag flags[200];
int count;
};
void game_load_flags(Game *g);
int flag_value(Flags *f, char *key);
#endif