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

9 lines
186 B
TypeScript
Raw Normal View History

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