diff options
| author | Arne Dußin | 2020-11-06 00:53:46 +0100 |
|---|---|---|
| committer | Arne Dußin | 2020-11-06 00:53:46 +0100 |
| commit | 625d00bb0e9a374e7ecf4b91fde599307199f3b6 (patch) | |
| tree | 3dfdcc544c5b29f1f49d09a374d129bd825ade56 /src/tool/mod.rs | |
| parent | 6d5db404416b93d22438efd45c7df7be2cc67d11 (diff) | |
| download | graf_karto-625d00bb0e9a374e7ecf4b91fde599307199f3b6.tar.gz graf_karto-625d00bb0e9a374e7ecf4b91fde599307199f3b6.zip | |
Add icon tool
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, } |
