Files
jdt-fish-client/assets/FishSingle/script/game/config/FishPathInfo.ts
2024-05-01 19:13:01 +08:00

12 lines
215 B
TypeScript

import { Vec2 } from 'cc'
export class FishPathInfo {
public pathId: string
public path: Array<Vec2> = []
constructor(pathId: string, path: Array<Vec2>) {
this.pathId = pathId
this.path = path
}
}