#pragma once #include "PlayerT.h" class RightPlayerT: public PlayerT { public: RightPlayerT(std::string n, std::vector & t): PlayerT(n,t) { } virtual ~RightPlayerT() = default; int Toss( void) override; std::string TossType(void ) const override; };