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.
22 lines
989 B
22 lines
989 B
3 years ago
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* main.cpp :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: narnaud <narnaud@student.42.fr> +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2022/06/23 10:53:16 by narnaud #+# #+# */
|
||
|
/* Updated: 2022/06/23 12:46:19 by narnaud ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#include "ClapTrap.hpp"
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
ClapTrap a("A");
|
||
|
ClapTrap b("B");
|
||
|
|
||
|
a.attack("B");
|
||
|
}
|