| 912 | } |
| 913 | |
| 914 | void oob_state::fx_render() |
| 915 | { |
| 916 | if ((shared.flags & 0x3) != 3) |
| 917 | { |
| 918 | return; |
| 919 | } |
| 920 | |
| 921 | if (shared.control && shared.fade_alpha < 1.0f) |
| 922 | { |
| 923 | render_fade(); |
| 924 | render_ghost(); |
| 925 | } |
| 926 | |
| 927 | if (shared.render_hand && shared.model != NULL) |
| 928 | { |
| 929 | render_hand(); |
| 930 | } |
| 931 | } |
| 932 | |
| 933 | void oob_state::force_start() |
| 934 | { |
nothing calls this directly
no test coverage detected