diff options
Diffstat (limited to 'src/tool/deletion_tool.rs')
| -rw-r--r-- | src/tool/deletion_tool.rs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/tool/deletion_tool.rs b/src/tool/deletion_tool.rs new file mode 100644 index 0000000..4d255d9 --- /dev/null +++ b/src/tool/deletion_tool.rs @@ -0,0 +1,19 @@ +use super::Tool; +use crate::transform::Transform; +use raylib::core::drawing::RaylibDrawHandle; +use raylib::RaylibHandle; + +pub struct DeletionTool {} + +impl DeletionTool { + pub fn new() -> Self { + Self {} + } +} + +impl Tool for DeletionTool { + fn update(&mut self, rl: &RaylibHandle, transform: &Transform) {} + fn active_update(&mut self, rl: &RaylibHandle, transform: &Transform) {} + + fn draw(&self, _rld: &mut RaylibDrawHandle, _transform: &Transform) {} +} |
