/**
 * Javascript SnowFlake object. Inherits from XAMLElement
 *
 * N.B. This is not a reference to a XAML element, it is a seperate object that 
 * has a toXaml() method that can be used with the createFromXAML() command.
 *
 * @author Richard Leggett - richardleggett.co.uk
 * @version 0.1
 */

/**
 * Inherits from XAMLElement
 */
Snowflake.prototype = new XAMLElement();
Snowflake.constructor = Snowflake;
Snowflake.prototype.superClass = XAMLElement;

/**
 * Constructor
 */
function Snowflake() {}

/**
 * Public properties
 */
Snowflake.prototype.xVel = 0;
Snowflake.prototype.yVel = 5;