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