blob: 3eca92a8cbdc13905a2d8cd56a3caaedd30a2f45 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
use super::Tool;
use crate::map_data::MapData;
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, map_data: &MapData, rl: &RaylibHandle, transform: &Transform) {}
fn active_update(&mut self, map_data: &mut MapData, rl: &RaylibHandle, transform: &Transform) {}
fn draw(&self, map_data: &MapData, _rld: &mut RaylibDrawHandle, _transform: &Transform) {}
}
|