diff options
| author | Jon Santmyer <jon@jonsantmyer.com> | 2026-05-05 09:55:30 -0400 |
|---|---|---|
| committer | Jon Santmyer <jon@jonsantmyer.com> | 2026-05-05 09:55:30 -0400 |
| commit | d67fca88b17120566a93004c99dadeef0a61964b (patch) | |
| tree | 63aeffab1044064d0e9a6b3b651ad05cbe420499 /src/timeman.rs | |
| parent | be2cf936ca48f3d638c3ef01f4e338dfc904c5e3 (diff) | |
| download | systemic4x-d67fca88b17120566a93004c99dadeef0a61964b.tar.gz systemic4x-d67fca88b17120566a93004c99dadeef0a61964b.tar.bz2 systemic4x-d67fca88b17120566a93004c99dadeef0a61964b.zip | |
fix label rendering over large bodies
Diffstat (limited to 'src/timeman.rs')
| -rw-r--r-- | src/timeman.rs | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/timeman.rs b/src/timeman.rs index 64250ee..27d5450 100644 --- a/src/timeman.rs +++ b/src/timeman.rs @@ -1,11 +1,4 @@ -use std::cell::RefCell; -use std::time::Duration; -use std::{fmt::Display, string}; -use std::error::Error; - -use crate::GameState; - -pub type Second = u64; +pub type Second = i64; pub const MINUTE: Second = 60; pub const HOUR: Second = MINUTE * 60; |
