SamsaraGame/assets/Script/ts/core/ArriveCallback.ts
2025-04-24 17:03:28 +08:00

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;
}
}