-- Style.mesa
-- Last changed by Doug Wyatt, August 22, 1980  11:43 AM

Style: DEFINITIONS =
BEGIN

Data: TYPE = RECORD [
	paint: PaintingFunction,
	texture: Texture,
	color: Color
	];

PaintingFunction: TYPE = {replace, paint, invert, erase};

Texture: TYPE = CARDINAL; -- for now, a 4x4 bit block

Color: TYPE = RECORD[r,g,b: [0..256)]; -- for now, red, green, and blue

END.