
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
// published by the Free Software Foundation. Please see the index.html
// for more details.

function Gnu()
{
	this.face = new Face(
		"gnu",
		Utilities.getDocumentWidth() / 2 + 175,
		Utilities.getDocumentHeight() / 2 - 120,
		460,
		400,
		new Eye("gnu_left_eye", 158, 136, new EyeMovement(15)),
		new Eye("gnu_right_eye", 253, 136, new EyeMovement(15))
	);
}


