// Player1.cpp

#include "Player2.h"

bool Player2::stop() const
{
  RandomInt choice(0,1);    // Declare a random coin.

  if (choice)
    return true;
  else
    return false;
}
