Select Git revision
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Cards.h 319 B
//
// Created by Eray düzenli on 13.04.23.
//
#pragma once
#include <string>
//Aufgabe Nr.2
struct Cards {
//cmc and count are also strings to make it easier for the getListOfCards function
public:
std::string name;
std::string mana;
std::string cmc;
std::string type;
std::string count;
};