phaser/Phaser/tweens/easing/Sinusoidal.d.ts
2013-05-25 04:21:24 +01:00

8 lines
189 B
TypeScript

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