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

Cards.h

  • user avatar
    erayosso authored
    a86ca570
    History
    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;
    };