#include <intuition/intuition.h>


/* Image-Ed V2.4 Sprite generation */

/* #define SpriteHeight 15  */

/* Start of Sprite Data */
extern USHORT chip SpriteData[]={
	0x0000, 0x0000,
	0xfffc, 0x7ffc,
	0x8004, 0xf674,
	0x8004, 0xd544,
	0x8004, 0xd664,
	0x8004, 0xd544,
	0x8004, 0xf674,
	0x8004, 0x8004,
	0x8004, 0x8004,
	0x8004, 0xe74c,
	0x8004, 0xd56c,
	0x8004, 0xf56c,
	0x8004, 0xe55c,
	0x8004, 0xd55c,
	0x8004, 0xd74c,
	0xfffc, 0xfffc,
	0x0000, 0x0000   /* 0x0000, oder 0xffff ist egal! */
};
/* End of Sprite Data */

/* End of Image-Ed Sprite generation */

/* beginning of PowerWindows source generation */

struct IntuiText IText5 = {
	1,0,JAM2,	/* front and back text pens, drawmode and fill byte */
	92,94,	/* XY origin relative to container TopLeft */
	NULL,	/* font pointer or NULL for default */
	"Bitte Closegadget anklicken!",	/* pointer to text */
	NULL	/* next IntuiText structure */
};

struct IntuiText IText4 = {
	3,0,JAM2,	/* front and back text pens, drawmode and fill byte */
	122,71,	/* XY origin relative to container TopLeft */
	NULL,	/* font pointer or NULL for default */
	"der 90er Jahre!",	/* pointer to text */
	&IText5	/* next IntuiText structure */
};

struct IntuiText IText3 = {
	3,0,JAM2,	/* front and back text pens, drawmode and fill byte */
	43,55,	/* XY origin relative to container TopLeft */
	NULL,	/* font pointer or NULL for default */
	"Fähigkeiten einer Programmiersprache",	/* pointer to text */
	&IText4	/* next IntuiText structure */
};

struct IntuiText IText2 = {
	3,0,JAM2,	/* front and back text pens, drawmode and fill byte */
	43,41,	/* XY origin relative to container TopLeft */
	NULL,	/* font pointer or NULL for default */
	"Sourcecode-Modulen als Demonstration der",	/* pointer to text */
	&IText3	/* next IntuiText structure */
};

extern struct IntuiText IText1 = {
	3,0,JAM2,	/* front and back text pens, drawmode and fill byte */
	41,27,	/* XY origin relative to container TopLeft */
	NULL,	/* font pointer or NULL for default */
	"Oberon-Demoprogramm mit C- und Assembler-",	/* pointer to text */
	&IText2	/* next IntuiText structure */
};


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

struct TextAttr TOPAZ60 = {
	(STRPTR)"topaz.font",
	TOPAZ_SIXTY,0,0
};
struct IntuiText MText2 = {
	2,1,JAM2,	/* front and back text pens, drawmode and fill byte */
	34,60,	/* XY origin relative to container TopLeft */
	&TOPAZ60,	/* font pointer or NULL for default */
	"U n w i d e r s t e h l i c h !",	/* pointer to text */
	&MText3	/* next IntuiText structure */
};

extern struct IntuiText MText = {
	3,0,JAM2,	/* front and back text pens, drawmode and fill byte */
	92,35,	/* XY origin relative to container TopLeft */
	NULL,	/* font pointer or NULL for default */
	"Sorry, das war einfach",	/* pointer to text */
	&MText2	/* next IntuiText structure */
};


/* end of PowerWindows source generation */
