mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 05:33:35 +00:00
8 lines
188 B
TypeScript
8 lines
188 B
TypeScript
/// <reference path="../../Game.d.ts" />
|
|
module Phaser.Easing {
|
|
class Quadratic {
|
|
static In(k): number;
|
|
static Out(k): number;
|
|
static InOut(k): number;
|
|
}
|
|
}
|