| 30 | GameTime::GameTime(uint64_t ticks) : ticks(ticks){}; |
| 31 | |
| 32 | static boost::posix_time::ptime getPtime(uint64_t ticks) |
| 33 | { |
| 34 | return GAME_START + ticksToPosix(ticks); |
| 35 | } |
| 36 | |
| 37 | UString GameTime::getLongTimeString() const |
| 38 | { |
no test coverage detected