9 lines
117 B
C++
9 lines
117 B
C++
#include "player.h"
|
|
|
|
Player::Player(int Id, QObject *parent) :
|
|
QObject(parent)
|
|
{
|
|
playerId = Id;
|
|
money = 100;
|
|
}
|