home · contact · privacy
Client, plugins: Make window scroll hints optional.
[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],
11      "func": win_info,
12      "scroll_hints": True,
13      "title": "Info"},
14     {"config": [-7, 33],
15      "func": win_log,
16      "scroll_hints": True,
17      "title": "Log"},
18     {"config": [4, 16],
19      "func": win_inventory,
20      "scroll_hints": True,
21      "title": "Inventory"},
22     {"config": [4, 16],
23      "func": win_look,
24      "scroll_hints": True,
25      "title": "Things here"},
26     {"config": [0, -34],
27      "func": win_map,
28      "scroll_hints": True,
29       "title": "Map"}
30 ]