X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fmap.h;h=bd919d85fd3d2aa707f4b61f128a4b914747a697;hb=eec39e9d6f991c90c8555859b5f10eb30c0370c1;hp=f8c6c9f361816ffb0620ab50c089ba495755a958;hpb=7e43b1fff89706212291384ddaa762fa30b02cb4;p=plomrogue diff --git a/src/client/map.h b/src/client/map.h index f8c6c9f..bd919d8 100644 --- a/src/client/map.h +++ b/src/client/map.h @@ -1,4 +1,8 @@ /* src/client/map.h + * + * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3 + * or any later version. For details on its copyright, license, and warranties, + * see the file NOTICE in the root directory of the PlomRogue source package. * * Routines for the game map window. */ @@ -8,7 +12,9 @@ -/* Try changing map window's focus into direction "d" (north = "N" etc.). */ +/* Try changing map window's focus into direction "d" (north = "N" etc.). Unset + * world.focus_each_turn. + */ extern void map_scroll(char d); /* Center map window on player (even if it is non-visible). */ @@ -17,4 +23,6 @@ extern void map_center(); /* Toggle world.focus_each_turn (auto-centering of map on player each turn). */ extern void toggle_autofocus(); + + #endif