#include <exec/types.h>
#include <intuition/screens.h>

#include "/defs.h"

struct mPrefObject {
	LONG xSpeed, ySpeed, Trail, numLines, Cycle;
};

VOID defaults( struct bMessage *bMsg )
{
	static struct mPrefObject mPO = { 16L, 16L, 64L, 2, 0L };

	bMsg->bm_Mod = INVALID_ID;
	bMsg->bm_Dep = 0;

	bMsg->bm_Info = "Moire (Bouncing lines) Module";
	bMsg->bm_Data = ( UBYTE * )( &mPO );
}
