aboutsummaryrefslogtreecommitdiff
path: root/cpp04/ex01/RadScorpion.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp04/ex01/RadScorpion.hpp')
-rw-r--r--cpp04/ex01/RadScorpion.hpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/cpp04/ex01/RadScorpion.hpp b/cpp04/ex01/RadScorpion.hpp
new file mode 100644
index 0000000..71b98db
--- /dev/null
+++ b/cpp04/ex01/RadScorpion.hpp
@@ -0,0 +1,30 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* RadScorpion.hpp :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/04/14 13:35:04 by charles #+# #+# */
+/* Updated: 2020/04/14 13:37:58 by charles ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+#ifndef RADSCORPION_HPP
+# define RADSCORPION_HPP
+
+# include <iostream>
+# include "Enemy.hpp"
+
+class RadScorpion : public Enemy
+{
+public:
+ RadScorpion();
+ RadScorpion(RadScorpion const& other);
+ void operator=(RadScorpion const& other);
+ ~RadScorpion();
+
+private:
+};
+
+#endif