| 970 | *#########################################################################################################################*/ |
| 971 | static cc_bool HS_GetHacks(void) { return Entities.CurPlayer->Hacks.Enabled; } |
| 972 | static void HS_SetHacks(cc_bool v) { |
| 973 | Entities.CurPlayer->Hacks.Enabled = v; |
| 974 | Options_SetBool(OPT_HACKS_ENABLED, v); |
| 975 | HacksComp_Update(&Entities.CurPlayer->Hacks); |
| 976 | } |
| 977 | |
| 978 | static void HS_GetSpeed(cc_string* v) { String_AppendFloat(v, Entities.CurPlayer->Hacks.SpeedMultiplier, 2); } |
| 979 | static void HS_SetSpeed(const cc_string* v) { |
nothing calls this directly
no test coverage detected