wip: fix: 16e->425e...?

This commit is contained in:
okay stopped screaming 2026-03-25 22:27:54 +02:00
parent 2fd5fbaaf9
commit 54ab1d8ba1
6 changed files with 26 additions and 22 deletions

View file

@ -636,9 +636,9 @@ impl Clock {
todo!()
}
}
impl<T: HasClock> Command<T> for ClockCommand {
fn execute (&self, state: &mut T) -> Perhaps<Self> {
self.execute(state.clock_mut()) // awesome
impl<T: HasClock> Act<T> for ClockCommand {
fn act (&self, state: &mut T) -> Perhaps<Self> {
self.act(state.clock_mut()) // awesome
}
}
impl ClockView {