Guest User

Untitled

a guest
Nov 23rd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #ifndef CREATION_H
  2. #define CREATION_H
  3. #include "Character.h"
  4. #include <iostream>
  5.  
  6. using namespace std;
  7.  
  8. class Creation{
  9. public:
  10. void createCharacter();
  11. private:
  12. Character* character;
  13. };
  14.  
  15. #endif // CREATION_H
Add Comment
Please, Sign In to add comment