export default class ArriveCallback{ x:number; y:number; callback:()=>void; constructor(x:number,y:number,callback:()=>void){ this.x=x; this.y=y; this.callback=callback; } }