phaser/Phaser/system/easing/Back.d.ts
2013-05-01 04:10:21 +01:00

8 lines
183 B
TypeScript

/// <reference path="../../Game.d.ts" />
module Phaser.Easing {
class Back {
static In(k): number;
static Out(k): number;
static InOut(k): number;
}
}