Advertisement
davsank

Untitled

Apr 29th, 2011
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #pragma once
  2. #include "Striker.h"
  3. #include "Rabbid.h"
  4. #include "Defender.h"
  5.  
  6. class Striker;
  7. class Goalkeeper : public Rabbid
  8. {
  9. private:
  10.     int reaction;
  11.     int moral;
  12. public:
  13.     Goalkeeper();
  14.     Goalkeeper(string, int);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement