Add map_toggle_block_obj_viewing_on

This commit is contained in:
Alexander Batalov 2023-09-02 19:43:56 +03:00
parent 4a94b19f60
commit 84288612ef
2 changed files with 10 additions and 0 deletions

View File

@ -2,6 +2,9 @@
namespace fallout {
// 0x5595CC
static bool block_obj_view_on = false;
// 0x4825B0
void setup_map_dirs()
{
@ -14,4 +17,10 @@ void copy_proto_lists()
// TODO: Incomplete.
}
// 0x485D44
bool map_toggle_block_obj_viewing_on()
{
return block_obj_view_on;
}
} // namespace fallout

View File

@ -5,6 +5,7 @@ namespace fallout {
void setup_map_dirs();
void copy_proto_lists();
bool map_toggle_block_obj_viewing_on();
} // namespace fallout