Skip to content
Snippets Groups Projects
Select Git revision
  • 6e97f8d08319138c3443a8ed7ec731ebb6bafb1a
  • master default protected
  • eray
  • david
  • artem
  • Benedikt
6 results

Cards.h

Blame
  • user avatar
    Eraser authored
    6e97f8d0
    History
    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;
    
    };