mirror of
https://github.com/wassname/phaser.git
synced 2026-07-01 16:50:43 +08: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;
|
|
}
|
|
}
|