| 1002 | } |
| 1003 | |
| 1004 | static int dfhack_penarray_get_dims(lua_State *L) |
| 1005 | { |
| 1006 | PenArray *parr = check_penarray_native(L, 1); |
| 1007 | lua_pushinteger(L, parr->get_dimx()); |
| 1008 | lua_pushinteger(L, parr->get_dimy()); |
| 1009 | return 2; |
| 1010 | } |
| 1011 | |
| 1012 | static int dfhack_penarray_get_tile(lua_State *L) |
| 1013 | { |
nothing calls this directly
no test coverage detected