Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #include "Player.h"
  2.  
  3. Player::Player(std::string n, std::string p, bool c): name(n), position(p), capitan(c)
  4. {
  5.  
  6. }
  7. bool Player::is_capitan()
  8. {
  9. return capitan;
  10. }
  11. Player::~Player(void)
  12. {
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement