Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Cards.h 224 B
//
// Created by Eray düzenli on 13.04.23.
//
#pragma once
#include <string>
//Aufgabe Nr.2
struct Cards {
public:
std::string name;
std::string mana;
int cmc;
std::string type;
std::string count;
};