/*
 * Proof-h.Org Beta
 * Copyright(c) 2008-2009 Proof-h
 * cf.z0rr0@gmail.com
 * 
 * http://www.proof-h.org
 */

Ext.app.Module = function(config){
    Ext.apply(this, config);
    Ext.app.Module.superclass.constructor.call(this);
    this.init();
}

Ext.extend(Ext.app.Module, Ext.util.Observable, {
    init : Ext.emptyFn
});
