mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-05 21:13:55 -07:00
8 lines
No EOL
226 B
C++
8 lines
No EOL
226 B
C++
#include "player_info.h"
|
|
|
|
PlayerInfo::PlayerInfo(const ServerInfo_User &info, int _id, bool _local, bool _judge)
|
|
: id(_id), local(_local), judge(_judge)
|
|
{
|
|
userInfo = new ServerInfo_User;
|
|
userInfo->CopyFrom(info);
|
|
} |