shithub: scoundrel

ref: c23732c4058c4fd5c93daddf9f5c42deb8ce05e9
dir: /dat.h/

View raw version
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;
};