| 304 | // *********************************************************************** |
| 305 | |
| 306 | int LuaSetFogStart(lua_State* pLua) { |
| 307 | f32 start = (f32)luaL_checknumber(pLua, 1); |
| 308 | SetFogStart(start); |
| 309 | return 0; |
| 310 | } |
| 311 | |
| 312 | // *********************************************************************** |
| 313 |
nothing calls this directly
no test coverage detected