mirror of
https://github.com/photonstorm/phaser
synced 2025-01-04 01:08:51 +00:00
12 lines
151 B
JavaScript
12 lines
151 B
JavaScript
|
var Tween = function (manager)
|
||
|
{
|
||
|
this.manager = manager;
|
||
|
};
|
||
|
|
||
|
Tween.prototype.constructor = Tween;
|
||
|
|
||
|
Tween.prototype = {
|
||
|
};
|
||
|
|
||
|
module.exports = Tween;
|