| 1111 | *#########################################################################################################################*/ |
| 1112 | static void MiO_GetCameraMass(cc_string* v) { String_AppendFloat(v, Camera.Mass, 2); } |
| 1113 | static void MiO_SetCameraMass(const cc_string* c) { |
| 1114 | Camera.Mass = Menu_Float(c); |
| 1115 | Options_Set(OPT_CAMERA_MASS, c); |
| 1116 | } |
| 1117 | |
| 1118 | static void MiO_GetReach(cc_string* v) { String_AppendFloat(v, Entities.CurPlayer->ReachDistance, 2); } |
| 1119 | static void MiO_SetReach(const cc_string* v) { Entities.CurPlayer->ReachDistance = Menu_Float(v); } |
nothing calls this directly
no test coverage detected