home · contact · privacy
Server: Make thingproliferation function selectable.
[plomrogue] / server / config / misc.py
1 # This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
2 # or any later version. For details on its copyright, license, and warranties,
3 # see the file NOTICE in the root directory of the PlomRogue source package.
4
5 from server.make_map import make_map
6 from server.thingproliferation import thingproliferation
7
8 make_map_func = make_map
9 thingproliferation_func = thingproliferation