From f3d5e273db5676697d8f62f1b0db8141adda9813 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sat, 7 May 2022 08:54:46 -0700 Subject: [PATCH] Remove this unimplemented method --- roguebasin/map.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/roguebasin/map.py b/roguebasin/map.py index bcde3e0..8ed4f0a 100644 --- a/roguebasin/map.py +++ b/roguebasin/map.py @@ -204,9 +204,6 @@ class RoomsAndCorridorsGenerator(MapGenerator): return tiles - def generate_tunnel(self, start_room_bounds: Rect, end_room_bounds: Rect): - pass - def __rect_from_bsp_node(self, node: tcod.bsp.BSP) -> Rect: return Rect(Point(node.x, node.y), Size(node.width, node.height))