Advertisement
hacityler

asdfgh

Nov 18th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.39 KB | None | 0 0
  1. #include "stdafx.h"
  2. #include "Deck.h"
  3. #include "Exploding_Kitten_Card.h"
  4.  
  5. Deck::Deck(int defuse, int exploding_kitten, int favor, int nope, int future, int skip, int attack, int basic)
  6. {
  7.     for (int i = 0; i < exploding_kitten; ++i)
  8.     {
  9.         cards.push_back(new exploding_kitten());
  10.                                 //expected a type specifier error
  11.     }
  12. }
  13.  
  14.  
  15.  
  16. void Deck::shuffle()
  17. {
  18.  
  19. }
  20.  
  21.  
  22. Deck::~Deck()
  23. {
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement