From ecaf1a4c53e0174588186fc72910be281e60f228 Mon Sep 17 00:00:00 2001
From: Michael Ghebremussie
 <michael.ghebremussie@student.reutlingen-university.de>
Date: Fri, 28 Oct 2022 18:17:16 +0000
Subject: [PATCH] Delete Cards.cpp

---
 WeC/Cards.cpp | 58 ---------------------------------------------------
 1 file changed, 58 deletions(-)
 delete mode 100644 WeC/Cards.cpp

diff --git a/WeC/Cards.cpp b/WeC/Cards.cpp
deleted file mode 100644
index 1de8f62..0000000
--- a/WeC/Cards.cpp
+++ /dev/null
@@ -1,58 +0,0 @@
-
-//Aufgabe 2
-
-#include <iostream>
-
-using namespace std;
-
-class Cards {
-
-private:
-    string name;
-    string mana;
-    string cmc;
-    string type;
-    string count;
-
-public:
-    //setter
-    void setName(string name) {
-        this->name = name;
-    }
-    //getter Name
-    string getName() {
-        return name;
-    }
-
-    void setMana(string mana) {
-        this->mana = mana;
-    }
-
-    string getMana() {
-        return mana;
-    }
-
-    void setCount(string count) {
-        this->count = count;
-    }
-
-    string getCount() {
-        return count;
-    }
-
-    void setCmc(string cmc) {
-        this->cmc = cmc;
-    }
-
-    string getCmc() {
-        return cmc;
-    }
-
-    void setType(string type) {
-        this->type = type;
-    }
-
-    string getType() {
-        return type;
-    }
-};
-- 
GitLab