phaser/Phaser/tweens/easing/Exponential.d.ts

9 lines
190 B
TypeScript
Raw Normal View History

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