Files
SDLPongCPP/.svn/pristine/ed/ed464b94501633067c19451ae1ef61ca8a2192ee.svn-base
T
2018-06-25 21:48:45 -04:00

16 lines
230 B
Plaintext

#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;
}