function GamerConfig () {
	//properties
	this.sNameSuffix = '';
	

	///methods
	function getNameSuffix() {
		if (this.sNameSuffix.length>0)
			return '-'+this.sNameSuffix;
		else
			return '';
	}

	/// associate methods
	GamerConfig.prototype.getNameSuffix = getNameSuffix;
}