| 101 | } |
| 102 | |
| 103 | double GameClock::hmToDayTime(int hours, int minutes) |
| 104 | { |
| 105 | return (hours + minutes / 60.0f) / 24.0f; |
| 106 | } |
| 107 | |
| 108 | void GameClock::dayTimeTohm(double timeOfDay, int& hours, int& minutes) |
| 109 | { |
nothing calls this directly
no outgoing calls
no test coverage detected