BattleGridConstant.ts 309 B

123456789
  1. /** 地图格子参数配置 */
  2. export class BattleGridConstant {
  3. static readonly ROW = 6;
  4. static readonly COL = 10;
  5. static readonly CELL_WIDTH = 125;
  6. static readonly CELL_HEIGHT = 125;
  7. static readonly CELL_SIZE = cc.size(BattleGridConstant.CELL_WIDTH, BattleGridConstant.CELL_HEIGHT);
  8. }