| 1027 | } |
| 1028 | |
| 1029 | static int dfhack_penarray_set_tile(lua_State *L) |
| 1030 | { |
| 1031 | PenArray *parr = check_penarray_native(L, 1); |
| 1032 | unsigned int x = luaL_checkint(L, 2); |
| 1033 | unsigned int y = luaL_checkint(L, 3); |
| 1034 | Pen pen; |
| 1035 | Lua::CheckPen(L, &pen, 4); |
| 1036 | parr->set_tile(x, y, pen); |
| 1037 | return 0; |
| 1038 | } |
| 1039 | |
| 1040 | static int dfhack_penarray_draw(lua_State *L) |
| 1041 | { |
nothing calls this directly
no test coverage detected