Files
SDLPongCPP/SDLPongCPP/Game/Equipment/cPlayer.cpp
T
2018-06-25 21:48:45 -04:00

16 lines
230 B
C++

#include "cPlayer.hpp"
using Equipment::cPlayer;
cPlayer::cPlayer( const cString name )
: m_name(name)
{}
cPlayer::~cPlayer()
{}
///Functions
void cPlayer::Score( const unsigned long int score /*= 1*/ )
{
m_score += score;
}