var zlObject = new Class({
	 world: null
	
	,initialize: function(world, objectType){
		this.world = world;
		this.type = objectType;
	}

	,toString: function(){
		return "zlObject[" + this.type + "]";
	}
	
});