最新回答 / morninggair
//绘制果实var fruitObj = function(){ this.alive = [];//bool this.x = []; this.y = []; this.l = []; this.spd = []; this.fruitType = []; this.orange = new Image(); this.blue = new Image();}fruitObj.prototype.num = 30;fruitObj.prototype.init = function(){ for(va...
2018-03-07