添加后端地图大小定义类

This commit is contained in:
flykhan 2023-03-10 16:27:30 +08:00
parent 848443fb08
commit 291b176aee
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
package com.kob.backend.config;
// 定义地图的大小和障碍物的数量
public class MapSizeConfig {
public static final Integer rows = 13;
public static final Integer cols = 14;
public static final Integer inner_walls_count = 20;
}