﻿if (!window.WhiteWolvesWeb)
	window.WhiteWolvesWeb = {};

WhiteWolvesWeb.Scene1 = function() {
}

WhiteWolvesWeb.Scene1.prototype =
{
    handleLoad: function(plugIn, userContext, rootElement) {
        this.plugIn = plugIn;

        // Beispielschaltfläche für Ereignisfunktion: Schaltfläche suchen und Ereignishandler anfügen
        //this.button = rootElement.children.getItem(0);	

        //this.button.addEventListener("MouseDown", Silverlight.createDelegate(this, this.handleMouseDown));
    }

    // Beispielereignishandler
    //handleMouseDown: function(sender, eventArgs) 
    //{
    //}
}
