Advertisement
Guest User

Untitled

a guest
May 24th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. #ifndef bird_2_h
  2. #define bird_2_h
  3.  
  4.  
  5. #include "ptak.h"
  6.  
  7. class bird2 : public abstract<char>
  8. {
  9. private:
  10.     static int xbody2;
  11.     static int ybody2;
  12. public:
  13.     bird2(char Body2, char Head2, char RWing2, char LWing2, char Tail2);
  14.     ~bird2();
  15.  
  16.     static int& Set_x2();
  17.     static int& Set_y2();
  18.     void aktualizuj_obiekt(char T[][80]);
  19.     void czysc_obiekt(char T[][80]);
  20.     friend class ruch;
  21. };
  22.  
  23. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement