diff options
Diffstat (limited to 'ex03/main.cpp')
| -rw-r--r-- | ex03/main.cpp | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/ex03/main.cpp b/ex03/main.cpp index b2ae001..e53d3a0 100644 --- a/ex03/main.cpp +++ b/ex03/main.cpp @@ -6,9 +6,29 @@ /* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/02/10 11:58:15 by dkaiser #+# #+# */ -/* Updated: 2025/02/10 11:58:24 by dkaiser ### ########.fr */ +/* Updated: 2025/02/10 12:48:13 by dkaiser ### ########.fr */ /* */ /* ************************************************************************** */ -int main(void) -{} +#include "Weapon.hpp" +#include "HumanA.hpp" + +int main() +{ + { + Weapon club = Weapon("crude spiked club"); + HumanA bob("Bob", club); + bob.attack(); + 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; +} |
