Back to project page Gamework.
The source code is released under:
Apache License
If you think the Android project Gamework 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 cz.robyer.gamework.scenario.reaction; //from w w w . j a v a2 s .c o m import cz.robyer.gamework.scenario.IdentificableObject; /** * Base game reaction class. * @author Robert P?sel */ public abstract class Reaction extends IdentificableObject { /** * Class constructor. * @param id Identificator of this reaction. */ public Reaction(String id) { super(id); } /** * This method activate reaction's behavior (e.g. vibrate, play sound). */ public abstract void action(); }