diff options
Diffstat (limited to 'src/tool/mod.rs')
| -rw-r--r-- | src/tool/mod.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tool/mod.rs b/src/tool/mod.rs index 532572a..aeabf19 100644 --- a/src/tool/mod.rs +++ b/src/tool/mod.rs @@ -2,12 +2,14 @@ pub mod deletion_tool; pub mod icon_tool; pub mod polygon_room_tool; pub mod rect_room_tool; +pub mod selection_tool; pub mod wall_tool; pub use deletion_tool::DeletionTool; pub use icon_tool::IconTool; pub use polygon_room_tool::PolygonRoomTool; pub use rect_room_tool::RectRoomTool; +pub use selection_tool::SelectionTool; pub use wall_tool::WallTool; use crate::button::Button; @@ -24,6 +26,7 @@ pub enum ToolType { WallTool, IconTool, DeletionTool, + SelectionTool, NumTools, } |
