mirror of
https://github.com/wassname/phaser.git
synced 2026-06-29 16:30:29 +08: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;
|
|
}
|
|
}
|