headless replay test

This commit is contained in:
2025-01-18 01:13:45 -08:00
parent 091da88b5c
commit 4c11980989
3 changed files with 210 additions and 2 deletions

View File

@@ -110,4 +110,10 @@ impl Run{
self.flagged=Some(flag_reason);
}
}
pub fn get_finish_time(&self)->Option<Time>{
match &self.state{
RunState::Finished{timer}=>Some(timer.time()),
_=>None,
}
}
}