UNPKG

@moderrkowo/jsgl

Version:

Client-side JavaScript library for creating web 2D games. Focusing at objective game.

9 lines (8 loc) 175 B
import { Input } from '../Input'; import { GameEvent } from './GameEvent'; /** * @group Game Events */ export type GameKeyEvent = GameEvent & { input: Input; };