/** 地图格子参数配置 */ export class GridConstant { static readonly ROW = 6; static readonly COL = 7; static readonly CELL_WIDTH = 80; static readonly CELL_HEIGHT = 80; static readonly CELL_SIZE = cc.size(GridConstant.CELL_WIDTH, GridConstant.CELL_HEIGHT); }