blob: 4d255d933af2b79a84b26ca7169250336807f5d2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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) {}
}
|