File:version_movieclip.js
(function() {
/**
* Static class holding library specific information such as the version and buildDate of
* the library.
**/
var o = this.createjs = this.createjs||{};
o = (o.MovieClip = o.MovieClip||{});
/**
* The version string for this release.
* @property version
* @for MovieClip
* @type String
* @static
**/
o.version = /*version*/"NEXT"; // injected by build process
/**
* The build date for this release in UTC format.
* @property buildDate
* @for MovieClip
* @type String
* @static
**/
o.buildDate = /*date*/"Wed, 09 Jan 2013 04:14:26 GMT"; // injected by build process
})();