| 897 | this->lastEventTime = lastEventTime; |
| 898 | } |
| 899 | bool GameImpl::setRevealAll(bool reveal) |
| 900 | { |
| 901 | if ( !isReplay() ) |
| 902 | return this->setLastError(Errors::Invalid_Parameter); |
| 903 | BW::BWDATA::ReplayRevealAll = reveal ? 1 : 0; |
| 904 | return this->setLastError(); |
| 905 | } |
| 906 | //-------------------------------------------------- GET RANDOM SEED --------------------------------------- |
| 907 | unsigned GameImpl::getRandomSeed() const |
| 908 | { |
no test coverage detected