aboutsummaryrefslogtreecommitdiff
path: root/cpp03/ex03/FragTrap.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp03/ex03/FragTrap.hpp')
-rw-r--r--cpp03/ex03/FragTrap.hpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/cpp03/ex03/FragTrap.hpp b/cpp03/ex03/FragTrap.hpp
new file mode 100644
index 0000000..2afa95c
--- /dev/null
+++ b/cpp03/ex03/FragTrap.hpp
@@ -0,0 +1,31 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* FragTrap.hpp :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/02/22 05:17:16 by cacharle #+# #+# */
+/* Updated: 2020/04/13 15:33:50 by charles ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+#ifndef FRAGTRAP_HPP
+# define FRAGTRAP_HPP
+
+# include <cstdlib>
+# include "ClapTrap.hpp"
+
+class FragTrap : public ClapTrap
+{
+public:
+ FragTrap();
+ FragTrap(std::string name);
+ FragTrap(FragTrap const& other);
+ void operator=(FragTrap const& other);
+ ~FragTrap();
+
+ void vaulthunter_dot_exe(std::string const& target);
+};
+
+#endif