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