| 995 | } |
| 996 | |
| 997 | static int dfhack_penarray_clear(lua_State *L) |
| 998 | { |
| 999 | PenArray *parr = check_penarray_native(L, 1); |
| 1000 | parr->clear(); |
| 1001 | return 0; |
| 1002 | } |
| 1003 | |
| 1004 | static int dfhack_penarray_get_dims(lua_State *L) |
| 1005 | { |
nothing calls this directly
no test coverage detected