Files
jdt-fish-client/assets/FishSingle/script/game/config/FishPathInfo.ts
2024-04-16 23:03:54 +08:00

10 lines
217 B
TypeScript

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