summaryrefslogtreecommitdiff
path: root/ex03/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ex03/main.cpp')
-rw-r--r--ex03/main.cpp21
1 files changed, 11 insertions, 10 deletions
diff --git a/ex03/main.cpp b/ex03/main.cpp
index e53d3a0..de69c15 100644
--- a/ex03/main.cpp
+++ b/ex03/main.cpp
@@ -6,12 +6,13 @@
/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/02/10 11:58:15 by dkaiser #+# #+# */
-/* Updated: 2025/02/10 12:48:13 by dkaiser ### ########.fr */
+/* Updated: 2025/02/10 12:58:13 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
#include "Weapon.hpp"
#include "HumanA.hpp"
+#include "HumanB.hpp"
int main()
{
@@ -22,13 +23,13 @@ int main()
club.setType("some other type of club");
bob.attack();
}
- // {
- // Weapon club = Weapon("crude spiked club");
- // HumanB jim("Jim");
- // jim.setWeapon(club);
- // jim.attack();
- // club.setType("some other type of club");
- // jim.attack();
- // }
- // return 0;
+ {
+ Weapon club = Weapon("crude spiked club");
+ HumanB jim("Jim");
+ jim.setWeapon(club);
+ jim.attack();
+ club.setType("some other type of club");
+ jim.attack();
+ }
+ return 0;
}