UNPKG

awayjs-display

Version:
20 lines (16 loc) 190 B
/** * */ class TouchPoint { x:number; y:number; id:number; constructor(x:number, y:number, id:number) { this.x = x; this.y = y; this.id = id; } } export default TouchPoint;