Danbias/Code/GameLogic/Player.h

19 lines
144 B
C++

#ifndef PLAYER_H
#define PLAYER_H
namespace GameLogic
{
class Player
{
public:
Player(void);
~Player(void);
private:
};
}
#endif