UNPKG

mylingo3d

Version:

Lingo3D is a React/Vue 3d game development framework that ships with a complete visual editor

14 lines 388 B
import { eventLoopDefaults, eventLoopSchema } from "./IEventLoop"; export const keyboardSchema = { ...eventLoopSchema, onKeyPress: Function, onKeyUp: Function, onKeyDown: Function }; export const keyboardDefaults = { ...eventLoopDefaults, onKeyPress: undefined, onKeyUp: undefined, onKeyDown: undefined }; //# sourceMappingURL=IKeyboard.js.map