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.
cpp_stl/Personnage/Kenny.cpp

22 lines
342 B

//
// Created by draia on 27/01/23.
//
#include <iostream>
#include "Kenny.h"
using namespace std;
void Kenny::parler(const string &message) const
{
cout << "MMmmmhhmmmm" << endl;
}
Kenny::Kenny() : Kenny("Kenny", "huh?")
{}
Kenny::Kenny(const std::string &name,
const std::string &pv)
: Personnage(name, pv)
{}