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.managers; /*from w w w . j a v a 2s . c o m*/ import de.mmssb.androidtbsgame.andengine.Model; /** * @author Manu * */ public abstract class Manager { private Model model; public Manager(Model model) { this.setModel(model); load(); } public abstract void load(); public Model getModel() { return model; } public void setModel(Model model) { this.model = model; } }