aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/io/console_io.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/io/console_io.rs')
-rw-r--r--crates/shirabe/src/io/console_io.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/crates/shirabe/src/io/console_io.rs b/crates/shirabe/src/io/console_io.rs
index 210dbdc..eb7ab31 100644
--- a/crates/shirabe/src/io/console_io.rs
+++ b/crates/shirabe/src/io/console_io.rs
@@ -678,6 +678,10 @@ impl IOInterface for ConsoleIO {
fn as_base_io_mut(&mut self) -> Option<&mut dyn BaseIO> {
Some(self)
}
+
+ fn enable_debugging(&mut self, start_time: f64) {
+ self.enable_debugging(start_time)
+ }
}
impl BaseIO for ConsoleIO {