﻿Type.registerNamespace("KMDA.Babyolifant");
/*** LayoutSection ***/

KMDA.Babyolifant.Section = function (section) {
    this.Type = section.name;
    this.Width = section.width;
    this.Height = section.height;
    this.x = section.x;
    this.y = section.y;
    this.ExternalScript = section.externalscript;
}

KMDA.Babyolifant.Section.prototype = {
    Type: "",
    Width: 0,
    Height: 0,
    x: 0,
    y: 0,
    ExternalScript:false
}

KMDA.Babyolifant.Section.registerClass('KMDA.Babyolifant.Section', null, Sys.IDisposable);

// Notify ScriptManager that this is the end of the script.
if (typeof (Sys) !== 'undefined') Sys.Application.notifyScriptLoaded();