添加后端地图大小定义类
This commit is contained in:
parent
848443fb08
commit
291b176aee
|
@ -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;
|
||||||
|
}
|
Loading…
Reference in New Issue