mirror of
https://github.com/photonstorm/phaser
synced 2024-12-24 12:03:36 +00:00
7 lines
280 B
TypeScript
7 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;
|
|
}
|
|
}
|