框架函数
| 444 | { |
| 445 | // 框架函数 |
| 446 | static int SetWindowed(lua_State* L)LNOEXCEPT |
| 447 | { |
| 448 | LAPP.SetWindowed(lua_toboolean(L, 1) == 0 ? false : true); |
| 449 | return 0; |
| 450 | } |
| 451 | static int SetFPS(lua_State* L)LNOEXCEPT |
| 452 | { |
| 453 | int v = luaL_checkinteger(L, 1); |
nothing calls this directly
no outgoing calls
no test coverage detected