Danbias/Code/GameLogic/Player.h

19 lines
144 B
C
Raw Normal View History

2013-11-19 11:07:14 +01:00
#ifndef PLAYER_H
#define PLAYER_H
namespace GameLogic
{
class Player
{
public:
Player(void);
~Player(void);
private:
};
}
#endif