mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 13:43:26 +00:00
9 lines
183 B
TypeScript
9 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;
|
||
|
}
|
||
|
}
|