// ************************************************************************************************
// *** Operating System Enumeration
// ************************************************************************************************

function OSType ()
{
	this.Unknown = 0;
	this.Windows = 1;
	this.Mac = 2;
	this.Linux = 3;
}
