zippy-game-engine
Version:
A lightweight game engine for web games
14 lines • 552 B
TypeScript
import { GamepadInputProcessor } from "./gamepad/gamepad-input-processor.js";
import { KeyboardSystem } from "./keyboard-system.js";
import { MouseSystem } from "./mouse-system.js";
import { TouchSystem } from "./touch-system.js";
export declare class InputSystem {
readonly keyboard: KeyboardSystem;
readonly mouse: MouseSystem;
readonly gamepads: GamepadInputProcessor;
readonly touches: TouchSystem;
constructor();
setupCanvasEvents(canvas: HTMLElement): void;
update(): void;
}
//# sourceMappingURL=input-system.d.ts.map