mirror of
https://github.com/jie65535/Landlords.git
synced 2024-07-27 19:05:27 +08:00
14 lines
180 B
C++
14 lines
180 B
C++
#include "stdafx.h"
|
|
#include "Player.h"
|
|
|
|
|
|
Player::Player(playerID_t id):
|
|
m_id(id), m_name(), m_integral(0), m_currRoom(0), isReady(false)
|
|
{
|
|
}
|
|
|
|
|
|
Player::~Player()
|
|
{
|
|
}
|