/*#########################
#
# MagicText Fonts v1.0
#
# by Dave Cash <magictext@fieldsofgarlic.com>
# 2004-03-09
#
*/

// define MTFont object

function MTFont (name, height, width) {
	this.name = name;
	this.height = height;
	this.width = width;
	this.chars = [];
}
