﻿Depend.Default = function(serverVars) {
    this.ServerVars = serverVars;
    this.Initialize();
};
Depend.Default.prototype = {
    Initialize: function() {

    }
};
Depend.Extend(Depend.Default, Depend.Core);