Guest User

Untitled

a guest
Apr 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. //Hit.hpp
  2. #ifndef HIT_HPP_INCLUDED
  3. #define HIT_HPP_INCLUDED
  4.  
  5. class Hit
  6. {
  7. public:
  8.     Hit();
  9.     ~Hit();
  10.     //virtual int print();
  11.     int print();
  12. private:
  13.     char *a;
  14. };
  15.  
  16. #endif // HIT_HPP_INCLUDED
Add Comment
Please, Sign In to add comment