Files
42_SIDE_exam_05_cpp/cpp_module_01/main.cpp
2022-12-01 15:47:19 +01:00

21 lines
346 B
C++

#include "Warlock.hpp"
#include "Fwoosh.hpp"
#include "Dummy.hpp"
int main()
{
Warlock richard("Richard", "the Titled");
Dummy bob;
Fwoosh* fwoosh = new Fwoosh();
richard.learnSpell(fwoosh);
richard.introduce();
richard.launchSpell("Fwoosh", bob);
richard.forgetSpell("Fwoosh");
richard.launchSpell("Fwoosh", bob);
delete fwoosh;
}