home · contact · privacy
Server, plugin: Refactor make_world modularity.
[plomrogue] / server / config / make_world_helpers.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.world_makable import world_makable
7
8 pos_test_func = lambda a, b, c: True
9 make_map_func = make_map
10 world_makable_func = world_makable