aboutsummaryrefslogtreecommitdiff
path: root/cpp04/ex03/Ice.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp04/ex03/Ice.hpp')
-rw-r--r--cpp04/ex03/Ice.hpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/cpp04/ex03/Ice.hpp b/cpp04/ex03/Ice.hpp
new file mode 100644
index 0000000..55011c0
--- /dev/null
+++ b/cpp04/ex03/Ice.hpp
@@ -0,0 +1,32 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* Ice.hpp :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/04/14 16:31:34 by charles #+# #+# */
+/* Updated: 2020/04/14 17:38:30 by charles ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+#ifndef ICE_HPP
+# define ICE_HPP
+
+# include <iostream>
+# include "AMateria.hpp"
+
+class Ice : public AMateria
+{
+public:
+ Ice();
+ Ice(Ice const& other);
+ void operator=(Ice const& other);
+ ~Ice();
+
+ virtual AMateria* clone() const;
+ virtual void use(ICharacter& target);
+private:
+};
+
+#endif