Skip to content
Snippets Groups Projects
Select Git revision
  • b670b80b6c1fbd90fac4d4de37090278cd689447
  • master default protected
  • tr
  • Thomas
  • letzgus-master-patch-88183
  • eray
  • david
  • artem
  • Benedikt
  • 346
10 results

Cards.h

Blame
  • Forked from Eray Düzenli / magicCards
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Cards.h 272 B
    #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;
    };