Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. class CEng_MainLoop
  2. {
  3. public :
  4.  
  5. CEng_MainLoop( bool editor);
  6. virtual ~CEng_MainLoop();
  7.  
  8. }
  9.  
  10.  
  11. class CJumpMan : public CEng_MainLoop
  12. {
  13. public :
  14.  
  15. CJumpMan(bool editor);
  16. ~CJumpMan();
  17. }
  18.  
  19.  
  20. cpp :
  21.  
  22. CEng_MainLoop::CEng_MainLoop( bool editor )
  23. {
  24. //toute une init
  25.  
  26. }
  27.  
  28.  
  29. CJumpMan::CJumpMan(bool editor)
  30. {
  31. //j'aimerais la meme init que la classe mere
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement