11 lines
218 B
TypeScript
11 lines
218 B
TypeScript
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;
|
|
}
|
|
} |