Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <process.h> // needed for _beginthread()
- #include <iostream>
- #include <windows.h>
- #include <ctime>
- //all we need to pass onto our scanning threads
- class ScanContents
- {
- public:
- //values used to compare and decide exactly which quarter
- BITMAP Bm;
- RECT RcWindow;
- //our pixel array
- RGBQUAD *PPixels;
- //all the contents necessary to run our aimbot scanning thread
- ScanContents(BITMAP bm, RECT rcWindow, RGBQUAD *pPixels)
- {
- Bm = bm;
- RcWindow = rcWindow;
- PPixels = pPixels;
- }
- };
- class MouseCoord
- {
- public:
- int X;
- int Y;
- MouseCoord(int x, int y)
- {
- X = x;
- Y = y;
- }
- };
- //DECLARE after basic concept
- class AimbotThr
- {
- public:
- HWND AppWnd;
- std::string GameWindow;
- AimbotThr(HWND appWnd, std::string gameWindow)
- {
- AppWnd = appWnd;
- GameWindow = gameWindow;
- }
- };
Advertisement
Add Comment
Please, Sign In to add comment