shithub: scoundrel

ref: fcdcc0d9929f461f09f35bf901e3344c89b4efc5
dir: /dat.h/

View raw version
typedef enum {
	Diamonds = 0,
	Hearts,
	Clubs,
	Spades,
} Color;


typedef struct State State;
struct State {
	int room[4];
	int deckcards;
	int weapon;
	int lastweaponkill;
	int hp;
	
	int running;
	int canskip;
	
	int hadpotion;
};