| 656 | |
| 657 | static void ES_GetCloudsSpeed(cc_string* v) { String_AppendFloat(v, Env.CloudsSpeed, 2); } |
| 658 | static void ES_SetCloudsSpeed(const cc_string* v) { Env_SetCloudsSpeed(Menu_Float(v)); } |
| 659 | |
| 660 | static int ES_GetCloudsHeight(void) { return Env.CloudsHeight; } |
| 661 | static void ES_SetCloudsHeight(int v) { Env_SetCloudsHeight(v); } |
nothing calls this directly
no test coverage detected