You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
331 B
24 lines
331 B
//
|
|
// Created by draia on 27/01/23.
|
|
//
|
|
|
|
#ifndef CPP_STL_KENNY_H
|
|
#define CPP_STL_KENNY_H
|
|
|
|
|
|
#include "Personnage.h"
|
|
|
|
class Kenny : public Personnage
|
|
{
|
|
public:
|
|
void parler(const std::string &message) const override;
|
|
|
|
Kenny();
|
|
|
|
Kenny(const std::string &name,
|
|
const std::string &pv);
|
|
};
|
|
|
|
|
|
#endif //CPP_STL_KENNY_H
|