mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 21:24:09 +00:00
29 lines
No EOL
484 B
TypeScript
29 lines
No EOL
484 B
TypeScript
/**
|
|
* Phaser - Components - Input
|
|
*
|
|
*
|
|
*/
|
|
|
|
module Phaser.Components {
|
|
|
|
export class Input {
|
|
|
|
// Input
|
|
//public inputEnabled: bool = false;
|
|
//private _inputOver: bool = false;
|
|
|
|
//public onInputOver: Phaser.Signal;
|
|
//public onInputOut: Phaser.Signal;
|
|
//public onInputDown: Phaser.Signal;
|
|
//public onInputUp: Phaser.Signal;
|
|
|
|
/**
|
|
* Update input.
|
|
*/
|
|
private updateInput() {
|
|
}
|
|
|
|
|
|
}
|
|
|
|
} |