UNPKG

awayjs-display

Version:
18 lines (15 loc) 186 B
/** * */ export class TouchPoint { x:number; y:number; id:number; constructor(x:number, y:number, id:number) { this.x = x; this.y = y; this.id = id; } }