If you think the Android project ZombieBird listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
package com.kilobolt.GameObjects;
publicclass Grass extends Scrollable {
// When Grass' constructor is invoked, invoke the superclass constructor
public Grass(float x, float y, int width, int height, float scrollSpeed) {
super(x, y, width, height, scrollSpeed);
}
}