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.variable; /*from w w w . jav a2s. c o m*/ import cz.robyer.gamework.scenario.HookableObject; import cz.robyer.gamework.scenario.reaction.VariableReaction.OperatorType; /** * Abstract variable object. * @author Robert P?sel */ public abstract class Variable extends HookableObject { /** * Class constructor. * @param id - identificator of variable */ public Variable(String id) { super(id); } /** * This method applies modification of variable and call hooks. * @param type of operator to be applied * @param value value to be used */ public abstract void modify(OperatorType type, Object value); }