Guest User

scancontents.h

a guest
Sep 11th, 2016
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. #include <process.h>
  2. #include <iostream>
  3. #include <windows.h>
  4. #include <ctime>
  5.  
  6.  
  7.  
  8.  
  9. class ScanContents
  10. {
  11. public:
  12. BITMAP Bm;
  13. RECT RcWindow;
  14. RGBQUAD * PPixels;
  15.  
  16. ScanContents(BITMAP bm, RECT rcWindow, RGBQUAD *pPixels)
  17. {
  18. Bm = bm;
  19. RcWindow = rcWindow;
  20. PPixels = pPixels;
  21. }
  22. };
  23.  
  24.  
  25.  
  26. class MouseCoord
  27. {
  28. public:
  29. int X;
  30. int Y;
  31. MouseCoord(int x, int y)
  32. {
  33. X = x;
  34. Y = y;
  35. }
  36. };
  37.  
  38.  
  39.  
  40. class AimbotThr
  41. {
  42. public:
  43. HWND AppWnd;
  44. std::string GameWindow;
  45. AimbotThr(HWND appWnd, std::string gameWindow)
  46. {
  47. AppWnd = appWnd;
  48. GameWindow = gameWindow;
  49. }
  50. };
Add Comment
Please, Sign In to add comment