appcui/ui/pathfinder/events.rs
1use crate::{system::Handle, ui::common::traits::EventProcessStatus};
2use super::PathFinder;
3
4pub trait PathFinderEvents {
5 fn on_path_updated(&mut self, _handle: Handle<PathFinder>) -> EventProcessStatus {
6 EventProcessStatus::Ignored
7 }
8}
9#[derive(Copy, Clone)]
10pub(crate) struct EventData;
11