UNPKG

phaser4-rex-plugins

Version:
12 lines (10 loc) 249 B
class BaseExpression { setExpressionHandler(callback) { this.expressionHandler = callback; return this; } eval(context) { return this.expressionHandler(context); } } export default BaseExpression;