blob: 4db0568e179d75bd91073ad245308ca58573cbb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* Human.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/02 12:52:38 by cacharle #+# #+# */
/* Updated: 2020/02/02 13:08:39 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#include "Human.hpp"
std::string Human::identify()
{
return brain.identify();
}
const Brain& Human::getBrain()
{
return brain;
}
|