Aliens create, wavetrace work, towers build, aliens move - thats all by now. I think it is time to write Graphic and Network modules.
9 lines
119 B
C++
9 lines
119 B
C++
#include "player.h"
|
|
|
|
Player::Player(int Id, QObject *parent) :
|
|
QObject(parent)
|
|
{
|
|
playerId = Id;
|
|
adMoney = 100;
|
|
}
|