mirror of
https://github.com/photonstorm/phaser
synced 2024-12-25 20:43:26 +00:00
8 lines
280 B
TypeScript
8 lines
280 B
TypeScript
|
/// <reference path="../../Game.d.ts" />
|
||
|
module Phaser {
|
||
|
class AnimationLoader {
|
||
|
static parseSpriteSheet(game: Game, key: string, frameWidth: number, frameHeight: number, frameMax: number): FrameData;
|
||
|
static parseJSONData(game: Game, json): FrameData;
|
||
|
}
|
||
|
}
|