| 177 | unsigned int GameTime::getDay() const { return (this->ticks + TICKS_PER_DAY - 1) / TICKS_PER_DAY; } |
| 178 | |
| 179 | unsigned int GameTime::getMonthDay() const |
| 180 | { |
| 181 | return getPtime(this->ticks).date().year_month_day().day; |
| 182 | } |
| 183 | |
| 184 | unsigned int GameTime::getHours() const { return getPtime(this->ticks).time_of_day().hours(); } |
| 185 |
no test coverage detected