Add project files.

This commit is contained in:
2018-06-25 21:48:45 -04:00
parent b04a25689b
commit 3c1b7d28e8
425 changed files with 35333 additions and 0 deletions
@@ -0,0 +1,19 @@
#include "cScoreBoard.hpp"
using Equipment::cScoreBoard;
cScoreBoard::cScoreBoard()
: m_player1Score(0), m_player2Score(0)
{}
cScoreBoard::~cScoreBoard()
{}
///Functions
void cScoreBoard::Score( const unsigned long int player /*= 1*/ )
{
if (player == 1)
++m_player1Score;
if (player == 2)
++m_player2Score;
}