| 1480 | }; |
| 1481 | |
| 1482 | static int gui_getFocusStrings(lua_State *state) { |
| 1483 | df::viewscreen *r = Lua::GetDFObject<df::viewscreen>(state, 1); |
| 1484 | vector<string> focusStrings = Gui::getFocusStrings(r); |
| 1485 | Lua::PushVector(state, focusStrings); |
| 1486 | return 1; |
| 1487 | } |
| 1488 | |
| 1489 | static int gui_getCurFocus(lua_State *state) { |
| 1490 | bool skip_dismissed = lua_toboolean(state, 1); |
nothing calls this directly
no test coverage detected