home · contact · privacy
8d0b6b0f411765e341cf55cde71fc7671c5cb143
[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 from server.make_world import make_world
8
9 make_map_func = make_map
10 thingproliferation_func = thingproliferation
11 make_world_func = make_world