mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 13:13:43 +00:00
15 lines
429 B
TypeScript
15 lines
429 B
TypeScript
/// <reference path="Game.d.ts" />
|
|
/// <reference path="system/Tween.d.ts" />
|
|
module Phaser {
|
|
class TweenManager {
|
|
constructor(game: Game);
|
|
private _game;
|
|
private _tweens;
|
|
public getAll(): Tween[];
|
|
public removeAll(): void;
|
|
public create(object): Tween;
|
|
public add(tween: Tween): Tween;
|
|
public remove(tween: Tween): void;
|
|
public update(): bool;
|
|
}
|
|
}
|