12 lines
215 B
TypeScript
12 lines
215 B
TypeScript
import { 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
|
|
}
|
|
}
|