renamed responder module

This commit is contained in:
michael-bailey 2022-04-18 13:00:27 +01:00
parent 05851f0aae
commit 403ba73bbb
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
use crate::event::Event;
pub(crate) trait IResponder {
fn accepts_event(&self, event: Event) -> bool;
fn accepts_event(&self, event: &Event) -> bool;
fn on_event(&self, event: Event);
}