Added some test default parameters for the random walk generator

This commit is contained in:
Charles Peyrat 2020-12-04 18:04:50 +01:00
parent bc9c7cd7f7
commit 3717429549
1 changed files with 7 additions and 0 deletions

View File

@ -3,6 +3,13 @@ from random import choice, random, randint
from dungeonbattle.interfaces import Map, Tile
DEFAULT_PARAMS = {"split_chance" : .15,
"turn_chance" : .5,
"death_chance" : .1,
"max_walkers" : 15,
"width" : 100,
"height" : 100,
"fill" : .4}
class Directions(Enum):