1 /**
  2  * The MIT License (MIT)
  3  *
  4  * Copyright (c) 2016 DeNA Co., Ltd.
  5  *
  6  * Permission is hereby granted, free of charge, to any person obtaining a copy
  7  * of this software and associated documentation files (the "Software"), to deal
  8  * in the Software without restriction, including without limitation the rights
  9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 10  * copies of the Software, and to permit persons to whom the Software is
 11  * furnished to do so, subject to the following conditions:
 12  *
 13  * The above copyright notice and this permission notice shall be included in
 14  * all copies or substantial portions of the Software.
 15  *
 16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 22  * SOFTWARE.
 23  */
 24 
 25 /// <reference path="base.js"/>
 26 /// <reference path="alpha_map_filter.js"/>
 27 /// <reference path="bitmap.js"/>
 28 /// <reference path="button_helper.js"/>
 29 /// <reference path="color_filter.js"/>
 30 /// <reference path="config.js"/>
 31 /// <reference path="container.js"/>
 32 /// <reference path="display_object.js"/>
 33 /// <reference path="dom_element.js"/>
 34 /// <reference path="ease.js"/>
 35 /// <reference path="event_dispatcher.js"/>
 36 /// <reference path="filter.js"/>
 37 /// <reference path="graphics.js"/>
 38 /// <reference path="load_queue.js"/>
 39 /// <reference path="movie_clip.js"/>
 40 /// <reference path="mouse_event.js"/>
 41 /// <reference path="rectangle.js"/>
 42 /// <reference path="shadow.js"/>
 43 /// <reference path="shape.js"/>
 44 /// <reference path="sound.js"/>
 45 /// <reference path="sprite.js"/>
 46 /// <reference path="sprite_sheet.js"/>
 47 /// <reference path="stage.js"/>
 48 /// <reference path="text.js"/>
 49 /// <reference path="ticker.js"/>
 50 /// <reference path="timeline.js"/>
 51 /// <reference path="touch.js"/>
 52 /// <reference path="tween.js"/>
 53 /// <reference path="video.js"/>
 54 
 55 if (createjs.SUPPORT_AMD) {
 56   // Exports symbols to an AMD loader.
 57   define({
 58     'AlphaMapFilter': createjs.AlphaMapFilter,
 59     'Bitmap': createjs.Bitmap,
 60     'ButtonHelper': createjs.ButtonHelper,
 61     'ColorFilter': createjs.ColorFilter,
 62     'Config': createjs.Config.exports,
 63     'Container': createjs.Container,
 64     'DisplayObject': createjs.DisplayObject,
 65     'DOMElement': createjs.DOMElement,
 66     'EventDispatcher': createjs.EventDispatcher,
 67     'Ease': createjs.Ease.exports,
 68     'Filter': createjs.Filter,
 69     'Graphics': createjs.Graphics,
 70     'HTMLAudioPlugin': createjs.HTMLAudioPlugin,
 71     'LoadQueue': createjs.LoadQueue,
 72     'MotionGuidePlugin': createjs.MotionGuidePlugin,
 73     'MouseEvent': createjs.MouseEvent,
 74     'MovieClip': createjs.MovieClip,
 75     'Rectangle': createjs.Rectangle,
 76     'Shadow': createjs.Shadow,
 77     'Shape': createjs.Shape,
 78     'Sound': createjs.Sound.exports,
 79     'Sprite': createjs.Sprite,
 80     'SpriteSheet': createjs.SpriteSheet,
 81     'Stage': createjs.Stage,
 82     'Text': createjs.Text,
 83     'Ticker': createjs.Ticker.exports,
 84     'Timeline': createjs.Timeline,
 85     'Touch': createjs.Touch.exports,
 86     'Tween': createjs.Tween,
 87     'Video': createjs.Video,
 88     'WebAudioPlugin': createjs.WebAudioPlugin,
 89     'version':
 90         '0.' + createjs.MAJOR_VERSION + '.' + createjs.MINOR_VERSION,
 91     'denaVersion':
 92         (createjs.DENA_MAJOR_VERSION << 16) + createjs.DENA_MINOR_VERSION
 93   });
 94 }
 95