| 312 | // *********************************************************************** |
| 313 | |
| 314 | int LuaSetFogEnd(lua_State* pLua) { |
| 315 | f32 end = (f32)luaL_checknumber(pLua, 1); |
| 316 | SetFogEnd(end); |
| 317 | return 0; |
| 318 | } |
| 319 | |
| 320 | // *********************************************************************** |
| 321 |
nothing calls this directly
no test coverage detected