function DisplayElement(width, height) {
	this.superClass = EventDispatcher; // herança
	this.superClass();
	
	delete this.superClass;
	
	this.id = null;
	this.width = width;
	this.height = height;
	this.shape = LZ.createContainer();
}