mirror of
https://github.com/photonstorm/phaser
synced 2025-01-14 22:24:21 +00:00
19 lines
485 B
JavaScript
19 lines
485 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
*/
|
|
|
|
/**
|
|
* @namespace Phaser.Display.Canvas
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
Interpolation: require('./CanvasInterpolation'),
|
|
Pool: require('./CanvasPool'),
|
|
Smoothing: require('./Smoothing'),
|
|
TouchAction: require('./TouchAction'),
|
|
UserSelect: require('./UserSelect')
|
|
|
|
};
|