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

14 lines
189 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;
}