Files
jdt-fish-client/assets/FishSingle/script/engine/utils/Grid.ts
2024-04-16 23:03:54 +08:00

14 lines
252 B
TypeScript

import { _decorator } from 'cc'
export default class Grid {
public row: number
public col: number
constructor(row: number, col) {
this.row = row
this.col = col
}
public static init(row: number, col: number) {
return new Grid(row, col)
}
}