mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-14 14:32:15 -07:00
11 lines
446 B
C++
11 lines
446 B
C++
#include "server_spectator.h"
|
|
|
|
Server_Spectator::Server_Spectator(Server_Game *_game,
|
|
int _playerId,
|
|
const ServerInfo_User &_userInfo,
|
|
bool _judge,
|
|
Server_AbstractUserInterface *_userInterface)
|
|
: Server_AbstractParticipant(_game, _playerId, _userInfo, _judge, _userInterface)
|
|
{
|
|
spectator = true;
|
|
}
|