// Player2.h

#include "Player.h"

class Player2 : public Player
{
 public:
   Player2(const string& name);
   
   virtual bool stop() const;
};

inline Player2::Player2(const string& name)
: Player(name)
{}


