| 505 | extern bool g_bDisableAllInput; |
| 506 | |
| 507 | void disable_input() |
| 508 | { |
| 509 | g_bDisableAllInput = true; |
| 510 | if (Actor()) |
| 511 | Actor()->PickupModeOff(); |
| 512 | } |
| 513 | void enable_input() |
| 514 | { |
| 515 | g_bDisableAllInput = false; |
nothing calls this directly
no test coverage detected