Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. //t->stop();
  2. if (m_pxProjectile)
  3. {
  4. delete m_pxProjectile;
  5. m_pxProjectile = nullptr;
  6. }
  7. if (m_pxBackground)
  8. {
  9. delete m_pxBackground;
  10. m_pxBackground = nullptr;
  11. }
  12.  
  13. if (m_pxHud)
  14. {
  15. delete m_pxHud;
  16. m_pxHud = nullptr;
  17. }
  18.  
  19. if (m_pxOwlMom)
  20. {
  21. delete m_pxOwlMom;
  22. m_pxOwlMom = nullptr;
  23. }
  24.  
  25. if (m_pxFalcon)
  26. {
  27. delete m_pxFalcon;
  28. m_pxFalcon = nullptr;
  29. }
  30.  
  31. if (m_pxPocketwatch)
  32. {
  33. delete m_pxPocketwatch;
  34. m_pxPocketwatch = nullptr;
  35. }
  36.  
  37. if (m_pxOwlets)
  38. {
  39. delete m_pxOwlets;
  40. m_pxOwlets = nullptr;
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement