
SHORT RequBorderVectors1[] = {
	0,0,
	98,0,
	98,13,
	0,13,
	0,0
};
struct Border RequBorder1 = {
	-1,-1,	/* XY origin relative to container TopLeft */
	3,0,JAM1,	/* front pen, back pen and drawmode */
	5,	/* number of XY vectors */
	RequBorderVectors1,	/* pointer to XY vectors */
	NULL	/* next border in list */
};

struct IntuiText RequIText1 = {
	3,0,JAM2,	/* front and back text pens, drawmode and fill byte */
	39,2,	/* XY origin relative to container TopLeft */
	NULL,	/* font pointer or NULL for default */
	"OK",	/* pointer to text */
	NULL	/* next IntuiText structure */
};

struct Gadget RequGadget1 = {
	NULL,	/* next gadget */
	164,83,	/* origin XY of hit box relative to window TopLeft */
	97,12,	/* hit box width and height */
	NULL,	/* gadget flags */
	RELVERIFY,	/* activation flags */
	BOOLGADGET,	/* gadget type flags */
	(APTR)&RequBorder1,	/* gadget border or image to be rendered */
	NULL,	/* alternate imagery for selection */
	&RequIText1,	/* first IntuiText structure */
	NULL,	/* gadget mutual-exclude long word */
	NULL,	/* SpecialInfo structure */
	NULL,	/* user-definable data */
	NULL	/* pointer to user-definable data */
};

#define RequGadgetList1 RequGadget1

struct IntuiText RequIText8 = {
	3,0,JAM2,	/* front and back text pens, drawmode and fill byte */
	95,65,	/* XY origin relative to container TopLeft */
	NULL,	/* font pointer or NULL for default */
	"NTSC",	/* pointer to text */
	NULL	/* next IntuiText structure */
};

struct IntuiText RequIText7 = {
	3,0,JAM2,	/* front and back text pens, drawmode and fill byte */
	14,65,	/* XY origin relative to container TopLeft */
	NULL,	/* font pointer or NULL for default */
	"Screen is     ",	/* pointer to text */
	&RequIText8	/* next IntuiText structure */
};

struct IntuiText RequIText6 = {
	3,0,JAM2,	/* front and back text pens, drawmode and fill byte */
	15,54,	/* XY origin relative to container TopLeft */
	NULL,	/* font pointer or NULL for default */
	"Replay Used:                      ",	/* pointer to text */
	&RequIText7	/* next IntuiText structure */
};

struct IntuiText RequIText5 = {
	3,0,JAM2,	/* front and back text pens, drawmode and fill byte */
	15,44,	/* XY origin relative to container TopLeft */
	NULL,	/* font pointer or NULL for default */
	"Module Size:                       ",	/* pointer to text */
	&RequIText6	/* next IntuiText structure */
};

struct IntuiText RequIText4 = {
	3,0,JAM2,	/* front and back text pens, drawmode and fill byte */
	15,35,	/* XY origin relative to container TopLeft */
	NULL,	/* font pointer or NULL for default */
	"Module name:                       ",	/* pointer to text */
	&RequIText5	/* next IntuiText structure */
};

struct IntuiText RequIText3 = {
	3,0,JAM2,	/* front and back text pens, drawmode and fill byte */
	92,23,	/* XY origin relative to container TopLeft */
	NULL,	/* font pointer or NULL for default */
	"Beta Version 1.0 (31/03/91)",	/* pointer to text */
	&RequIText4	/* next IntuiText structure */
};

struct IntuiText RequIText2 = {
	3,0,JAM2,	/* front and back text pens, drawmode and fill byte */
	93,14,	/* XY origin relative to container TopLeft */
	NULL,	/* font pointer or NULL for default */
	"Written by Thomas LANDSPURG",	/* pointer to text */
	&RequIText3	/* next IntuiText structure */
};

#define RequIntuiTextList1 RequIText2

struct NewWindow RequNewWindowStructure1 = {
	74,85,	/* window XY origin relative to TopLeft of screen */
	391,102,	/* window width and height */
	0,1,	/* detail and block pens */
	GADGETDOWN+GADGETUP+REQSET+CLOSEWINDOW+REQVERIFY+REQCLEAR,	/* IDCMP flags */
	WINDOWDRAG+ACTIVATE+NOCAREREFRESH,	/* other window flags */
	&RequGadget1,	/* first gadget in gadget list */
	NULL,	/* custom CHECKMARK imagery */
	"Multi player...",	/* window title */
	NULL,	/* custom screen pointer */
	NULL,	/* custom bitmap */
	5,5,	/* minimum width and height */
	-1,-1,	/* maximum width and height */
	WBENCHSCREEN	/* destination screen type */
};
