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