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