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 e528b8f..f503d2b 100644 --- a/src/tool/mod.rs +++ b/src/tool/mod.rs @@ -1,10 +1,12 @@ pub mod deletion_tool; pub mod icon_tool; +pub mod polygon_room_tool; pub mod room_tool; pub mod wall_tool; pub use deletion_tool::DeletionTool; pub use icon_tool::IconTool; +pub use polygon_room_tool::PolygonRoomTool; pub use room_tool::RoomTool; pub use wall_tool::WallTool; @@ -18,6 +20,7 @@ use raylib::RaylibHandle; #[repr(u8)] pub enum ToolType { RoomTool, + PolygonRoomTool, WallTool, IconTool, DeletionTool, |
