mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 13:13:43 +00:00
21 lines
232 B
TypeScript
21 lines
232 B
TypeScript
/// <reference path="../../Game.ts" />
|
|
|
|
/**
|
|
* Phaser - Easing - Linear
|
|
*
|
|
* For use with Phaser.Tween
|
|
*/
|
|
|
|
module Phaser.Easing {
|
|
|
|
export class Linear {
|
|
|
|
public static None(k) {
|
|
|
|
return k;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|