home · contact · privacy
676d94c9b864397c95af40d4a11273a1fb4d4fdb
[plomrogue] / client / config / windows.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
6 from client.windows import win_info, win_log, win_inventory, win_look, win_map
7
8
9 windows_config = [
10     {"config": [1, 33], "func": win_info, "title": "Info"},
11     {"config": [-7, 33], "func": win_log, "title": "Log"},
12     {"config": [4, 16], "func": win_inventory, "title": "Inventory"},
13     {"config": [4, 16], "func": win_look, "title": "Things here"},
14     {"config": [0, -34], "func": win_map, "title": "Map"}
15 ]