// create namespace
Core.createNamespace('nl.code.fx');

/**
 * Custum Fx Class
 *
 * Events 'set'
 */
nl.code.fx.Fx = new Class({
    /**
     * @extend Fx
     */
    Extends: Fx,

    /**
     * Constructor
     *
     * @param object
     */
    initialize: function(options) {
        this.parent(options);
    },

    /**
     * Set the value
     *
     * @param int
     * @return void
     */
    set: function(calculated_value) {
        this.fireEvent('set', calculated_value);
    }
});