merge develop into master #20

Merged
michael-bailey merged 181 commits from develop into master 2023-12-01 21:48:28 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 403ba73bbb - Show all commits

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);
}