Skip to content
Snippets Groups Projects
Commit 6866180b authored by Michael Ghebremussie's avatar Michael Ghebremussie
Browse files

Upload New File

parent fb93bcec
No related branches found
No related tags found
No related merge requests found
//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;
}
};
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment