#include <TimerManager.hh>
A simple struct to represent a lap or race finish time.
Definition at line 8 of file TimerManager.hh.
Public Member Functions | |
Timer () | |
[Unused] Creates a zero'd timer. | |
Timer (u16 min_, u8 sec_, u16 mil_) | |
Timer (u32 data) | |
std::strong_ordering | operator<=> (const Timer &rhs) const |
bool | operator== (const Timer &rhs) const =default |
bool | operator!= (const Timer &rhs) const =default |
Timer | operator- (const Timer &rhs) const |
Timer | operator+ (f32 ms) const |
Public Attributes | |
u16 | min |
u8 | sec |
u16 | mil |
bool | valid |
|
0x8051C374 |
[Unused] Creates a zero'd timer.
Definition at line 6 of file TimerManager.cc.
Definition at line 8 of file TimerManager.cc.
System::Timer::Timer | ( | u32 | data | ) |
Parses a time from an RKG's 3 byte time format.
Definition at line 12 of file TimerManager.cc.
|
inline |
Definition at line 60 of file TimerManager.hh.
Definition at line 34 of file TimerManager.hh.
|
inline |
Definition at line 14 of file TimerManager.hh.
u16 System::Timer::mil |
Definition at line 88 of file TimerManager.hh.
u16 System::Timer::min |
Definition at line 86 of file TimerManager.hh.
u8 System::Timer::sec |
Definition at line 87 of file TimerManager.hh.
bool System::Timer::valid |
Definition at line 89 of file TimerManager.hh.