phaser/Phaser/system/easing/Sinusoidal.d.ts

9 lines
189 B
TypeScript
Raw Normal View History

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