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 73654d9..a3d5964 100644 --- a/src/tool/mod.rs +++ b/src/tool/mod.rs @@ -1,8 +1,10 @@ pub mod deletion_tool; +pub mod icon_tool; pub mod room_tool; pub mod wall_tool; pub use deletion_tool::DeletionTool; +pub use icon_tool::IconTool; pub use room_tool::RoomTool; pub use wall_tool::WallTool; @@ -16,6 +18,7 @@ use raylib::RaylibHandle; pub enum ToolType { RoomTool, WallTool, + IconTool, DeletionTool, NumTools, } |
