2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2022-02-28 14:29:51 +00:00
|
|
|
* @copyright 2022 Photon Storm Ltd.
|
2019-05-10 15:15:04 +00:00
|
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
2018-02-12 16:01:20 +00:00
|
|
|
*/
|
|
|
|
|
2018-01-31 13:54:44 +00:00
|
|
|
/**
|
|
|
|
* @namespace Phaser.Animations
|
|
|
|
*/
|
2018-01-16 22:28:29 +00:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
|
|
|
|
Animation: require('./Animation'),
|
|
|
|
AnimationFrame: require('./AnimationFrame'),
|
2019-01-15 14:37:24 +00:00
|
|
|
AnimationManager: require('./AnimationManager'),
|
2020-09-08 08:31:59 +00:00
|
|
|
AnimationState: require('./AnimationState'),
|
2019-01-15 14:37:24 +00:00
|
|
|
Events: require('./events')
|
2018-01-16 22:28:29 +00:00
|
|
|
|
|
|
|
};
|