#include #include "RightPlayerT.h" #include #include using namespace std; int RightPlayerT::Toss(void) { int newPos; newPos = GetMyPosition() +1; if (newPos == static_cast(team.size()) ) { newPos = 0; } return newPos; } string RightPlayerT::TossType(void ) const { return "to the right"; }