// Player1.h

#include "Player.h"

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

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


