| 423 | } |
| 424 | |
| 425 | void Debugger::GameInitHook() |
| 426 | { |
| 427 | ServerThreadReentry(); |
| 428 | isInitialized_ = true; |
| 429 | if (breakpoints_.ShouldTriggerGlobalBreakpoint(GlobalBreakpointType::GlobalBreakOnGameInit)) { |
| 430 | GlobalBreakpointInServerThread(GlobalBreakpointReason::GameInit); |
| 431 | } |
| 432 | } |
| 433 | |
| 434 | void Debugger::DeleteAllDataHook() |
| 435 | { |
no test coverage detected