13 lines
102 B
C++
13 lines
102 B
C++
|
#include "Player.h"
|
||
|
|
||
|
using namespace GameLogic;
|
||
|
|
||
|
Player::Player(void)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
Player::~Player(void)
|
||
|
{
|
||
|
}
|