Files
video_socket-server/client/src/touchflags.js

8 lines
127 B
JavaScript
Raw Normal View History

2026-04-29 15:18:30 +08:00
export const TouchFlags =
{
IndirectTouch: 1 << 0,
PrimaryTouch: 1 << 4,
Tap: 1 << 5,
OrphanedPrimaryTouch: 1 << 6,
};