mirror of
https://github.com/wassname/phaser.git
synced 2026-06-28 16:20:37 +08:00
9 lines
190 B
TypeScript
9 lines
190 B
TypeScript
/// <reference path="../../Game.d.ts" />
|
|
module Phaser.Easing {
|
|
class Exponential {
|
|
static In(k): number;
|
|
static Out(k): number;
|
|
static InOut(k): number;
|
|
}
|
|
}
|