//Classe Rubble : un tas de poussière
function Rubble ( x,y ,id ) { 

	this._x = x;
	this._y = y;
	this._size = 32;
	this.isAlive = false;
	this._type = "rubble";
	this._id = id;
	
}
