- /** 地图格子参数配置 */
- export class BattleGridConstant {
- static readonly ROW = 6;
- static readonly COL = 10;
- static readonly CELL_WIDTH = 125;
- static readonly CELL_HEIGHT = 125;
- static readonly CELL_SIZE = cc.size(BattleGridConstant.CELL_WIDTH, BattleGridConstant.CELL_HEIGHT);
- }
|