Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.13 KB | None | 0 0
  1. Card.h header file
  2. #pragma once
  3. class Card {
  4. public:
  5.     Card();
  6.     int getCardValue() const;
  7.     void setCardValue(int p_value);
  8. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement