#ifndef PESANT_T #define PESANT_T #include "PlayerT.h" class PesantT: public PlayerT { public: PesantT(std::string n, int h=1):PlayerT(n, h) {}; std::string Fight(void) const override; }; #endif