* Highlight \a w by \a h tiles at the cursor. * @param w Width of the highlighted tiles rectangle. * @param h Height of the highlighted tiles rectangle. */
| 2617 | * @param h Height of the highlighted tiles rectangle. |
| 2618 | */ |
| 2619 | void SetTileSelectSize(int w, int h) |
| 2620 | { |
| 2621 | _thd.new_size.x = w * TILE_SIZE; |
| 2622 | _thd.new_size.y = h * TILE_SIZE; |
| 2623 | _thd.new_outersize.x = 0; |
| 2624 | _thd.new_outersize.y = 0; |
| 2625 | } |
| 2626 | |
| 2627 | void SetTileSelectBigSize(int ox, int oy, int sx, int sy) |
| 2628 | { |
no outgoing calls
no test coverage detected