// // Created by draia on 27/01/23. // #ifndef CPP_STL_PERSONNAGE_H #define CPP_STL_PERSONNAGE_H #include class Personnage { private: std::string m_name; std::string m_pv; public: virtual void parler(const std::string &message) const; const std::string &name() const; explicit Personnage(const std::string &name = "FNU", const std::string &pv = "wat"); virtual ~Personnage(); }; #endif //CPP_STL_PERSONNAGE_H