Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.52 KB | None | 0 0
  1. #pragma once
  2. #include"YuGiOhCard.h"
  3. class Deck
  4. {
  5. private:
  6.     YuGiOhCard YuGiOhCardList[40];
  7. public:
  8.     Deck();
  9.     Deck(const char*);
  10.     int numberOfSpellCards() const;
  11.     int numberOfMonsterCards() const;
  12.     void DeckSetTwoCards(int, int);
  13.     void printDeck();
  14.     void ChangeCard(char*, Deck deck);
  15.     char* getYuGiOhCardListName(int i) const;
  16.     bool getIsMonster(int i) const;
  17.     void setYuGiOhCardListName(char* name, int i);
  18.     void saveIntoFile(const char*);
  19.     //int getNumberOfMagicCards();
  20.     //int getNumberOfMonsterCards();
  21.  
  22. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement