From 82d11b7d3e15d8175accf7579db1fbe528fc6583 Mon Sep 17 00:00:00 2001 From: Arne Dußin Date: Wed, 16 Dec 2020 13:34:56 +0100 Subject: Add constant for default colours and selection tool --- src/tool/mod.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/tool/mod.rs') 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, } -- cgit v1.2.3-70-g09d2