aboutsummaryrefslogtreecommitdiff
path: root/cpp04/ex01/Enemy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp04/ex01/Enemy.cpp')
-rw-r--r--cpp04/ex01/Enemy.cpp54
1 files changed, 54 insertions, 0 deletions
diff --git a/cpp04/ex01/Enemy.cpp b/cpp04/ex01/Enemy.cpp
new file mode 100644
index 0000000..321ca68
--- /dev/null
+++ b/cpp04/ex01/Enemy.cpp
@@ -0,0 +1,54 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* Enemy.cpp :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/04/14 13:23:47 by charles #+# #+# */
+/* Updated: 2020/04/14 14:11:19 by charles ### ########.fr */
+/* */
+/* ************************************************************************** */
+
+#include "Enemy.hpp"
+
+Enemy::Enemy(Enemy const& other)
+{
+ *this = other;
+}
+
+void Enemy::operator=(Enemy const& other)
+{
+ m_hp = other.m_hp;
+ m_type = other.m_type;
+}
+
+Enemy::~Enemy()
+{
+}
+
+Enemy::Enemy(int hp, std::string const& type)
+ : m_hp(hp), m_type(type)
+{
+}
+
+std::string const& Enemy::getType() const
+{
+ return m_type;
+}
+
+int Enemy::getHP() const
+{
+ return m_hp;
+}
+
+void Enemy::takeDamage(int amount)
+{
+ if (amount < 0)
+ return;
+ m_hp -= amount;
+}
+
+Enemy::Enemy()
+{
+}