| 428 | } |
| 429 | |
| 430 | Auth NetworkBase::GetAuthStatus() |
| 431 | { |
| 432 | if (GetMode() == Mode::client) |
| 433 | { |
| 434 | return _serverConnection->authStatus; |
| 435 | } |
| 436 | if (GetMode() == Mode::server) |
| 437 | { |
| 438 | return Auth::ok; |
| 439 | } |
| 440 | return Auth::none; |
| 441 | } |
| 442 | |
| 443 | uint32_t NetworkBase::GetServerTick() const noexcept |
| 444 | { |
no test coverage detected