diff options
Diffstat (limited to 'src/time.odin')
-rw-r--r-- | src/time.odin | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/time.odin b/src/time.odin index 3bd4721..080096b 100644 --- a/src/time.odin +++ b/src/time.odin @@ -51,6 +51,16 @@ Workday :: struct { // because lunch breaks // cause more blocks blocks : [16]Timeblock, + + // Fractions store how far + // through the day each + // timesplit occurs. + // They should probably be + // changed to come in pairs, + // as moments do in timeblocks, + // because then we can store + // both the start and end + // of timeblocks in fractions fractions : [16]f32, total_timeblocks : int, } |