| 166 | } |
| 167 | |
| 168 | u32 get_time_hours() |
| 169 | { |
| 170 | u32 year = 0, month = 0, day = 0, hours = 0, mins = 0, secs = 0, milisecs = 0; |
| 171 | split_time((g_pGameLevel && Level().game) ? Level().GetGameTime() : ai().alife().time_manager().game_time(), year, month, day, hours, mins, secs, milisecs); |
| 172 | return hours; |
| 173 | } |
| 174 | |
| 175 | u32 get_time_minutes() |
| 176 | { |
nothing calls this directly
no test coverage detected