| 250 | } |
| 251 | |
| 252 | void HacksComp_SetFlying(struct HacksComp* hacks, cc_bool flying) { |
| 253 | if (hacks->Flying == flying) return; |
| 254 | hacks->Flying = flying; |
| 255 | Event_RaiseVoid(&UserEvents.HacksStateChanged); |
| 256 | } |
| 257 | |
| 258 | void HacksComp_SetNoclip(struct HacksComp* hacks, cc_bool noclip) { |
| 259 | if (hacks->Noclip == noclip) return; |
no test coverage detected