Back to project page androidtbsgame.
The source code is released under:
MIT License
If you think the Android project androidtbsgame listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package de.mmssb.androidtbsgame.andengine.scenes; /*from w ww.j av a 2 s. c o m*/ import org.andengine.entity.scene.Scene; import de.mmssb.androidtbsgame.andengine.Model; /** * @author Manu * */ public abstract class ModelScene extends Scene { private Model model; /** * Creates an instance of the {@link ModelScene} subclass * * @param model * {@link Model} reference */ public ModelScene(Model model) { this.model = model; initialize(); } /** * Initializes the {@link ModelScene} subclass */ public abstract void initialize(); public Model getModel() { return model; } public void setModel(Model model) { this.model = model; } }