ref: bcf588dfdf8ce73721ceba766c219c3e0bace666
dir: /dat.h/
typedef enum {
Diamonds = 0,
Hearts,
Clubs,
Spades,
} Color;
typedef enum {
Notstarted = 0,
Running,
Won,
Lost,
} Status;
typedef struct State State;
struct State {
int room[4];
int deckcards;
int weapon;
int lastweaponkill;
int hp;
Status status;
int canskip;
int hadpotion;
};