Advertisement
czlowiekzgon

Untitled

Nov 9th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #pragma once
  2. using namespace std;
  3. class Assassin {
  4. private:
  5. string nickname;
  6. string gun;
  7. public:
  8. Assassin();
  9. Assassin(string nick, string g);
  10. void init(string nick, string g);
  11. void init();
  12. void show();
  13.  
  14. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement