Back to project page Fruity-Bang.
The source code is released under:
MIT License
If you think the Android project Fruity-Bang listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * To change this template, choose Tools | Templates * and open the template in the editor.//from w w w.jav a2 s .c om */ package GameController; import GameModel.Bush; import com.jme3.bullet.collision.shapes.CollisionShape; import com.jme3.bullet.control.RigidBodyControl; import com.jme3.scene.Node; /** * * @author Thong */ public class BushGhost extends RigidBodyControl{ private Bush bush; public BushGhost(CollisionShape shape, Bush bush) { super(shape, 0f); this.bush = bush; } public Bush getBush() { return bush; } }