UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

12 lines 295 B
/** * Event names for DOM {@link EventTarget} related to touch. * useful for .addEventListener and .removeEventListener * @readonly * @enum {string} */ export const TouchEvents = { Start: "touchstart", End: "touchend", Move: "touchmove", Cancel: "touchcancel", };