thrive/flag.h

24 lines
320 B
C
Raw Permalink Normal View History

2025-01-13 19:37:38 -05:00
#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);
2025-01-18 19:34:45 -05:00
Flag *find_flag(Flags *f, char *key);
2025-01-13 19:37:38 -05:00
int flag_value(Flags *f, char *key);
#endif