15 lines
177 B
C++
15 lines
177 B
C++
|
#include "Game.h"
|
||
|
#include "Player.h"
|
||
|
|
||
|
using namespace GameLogic;
|
||
|
|
||
|
Game::PlayerData::PlayerData()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void Game::PlayerData::MovePlayer(const PLAYER_MOVEMENT &movement)
|
||
|
{
|
||
|
|
||
|
}
|