Advertisement
Guest User

Visuals

a guest
Jul 5th, 2015
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.72 KB | None | 0 0
  1. #pragma once
  2. #include "Globals.h"
  3. #include "Drawings.h"
  4.  
  5. extern char *WeaponName[52];
  6. extern char *RecoilDrawTypes[2];
  7. class CVisuals
  8. {
  9. public:
  10.     CVisuals();
  11.     ~CVisuals();
  12.  
  13.     float WearingWeponPosX;
  14.     float WearingWeponPosY;
  15.     float DistancePosX;
  16.     float DistancePosY;
  17.     float HealthPosX;
  18.     float HealthPosY;
  19.     float LastTextXPos;
  20.     float LastTextYPos;
  21.     void InitPosiitons();
  22.  
  23.     static float RecoilDrawResolution;
  24.     static int RecoilDrawType;
  25.  
  26.     void Render();
  27.  
  28.     void DrawFovAimbot();
  29.     void DrawCrosshair();
  30.     void DrawRecoilCrosshair();
  31.  
  32.     void DrawESP(int PlayerIndex, Color color);
  33.     void DrawHealth(int PlayerIndex);
  34.     void DrawSnapLine(int PlayerIndex, Color color);
  35.     void DrawHead(int PlayerIndex, Color color);
  36.     void DrawBones(int PlayerIndex, Color color);
  37.     void DrawBone(int Start, int End, int PlayerIndex, Color color);
  38.     void DrawDistance(int Index);
  39.     void DrawWeapon(int Index);
  40.     void DrawName(int Index);
  41.  
  42.  
  43.     void DrawBomb();
  44.     void DrawDropedWeapons();
  45.  
  46.     bool bDrawCrosshair;
  47.     bool bDrawRecoilCrosshair;
  48.     bool bDrawESP;
  49.     bool bDrawHealth;
  50.     bool bDrawSnapLine;
  51.     bool bDrawHead;
  52.     bool bDrawBones;
  53.     bool bDrawBone;
  54.     bool bDrawDistance;
  55.     bool bDrawWeapon;
  56.     bool bDrawName;
  57.     bool bDrawAlly;
  58.     bool bDrawBomb;
  59.     bool bDrawGranades;
  60.     bool bDrawDropedWeapons;
  61.  
  62.     static Color EnemyBoxColor;
  63.     static Color AllyBoxColor;
  64.     static Color HealthTextColor;
  65.     static Color DistanceTextColor;
  66.     static Color WeaponTextColor;
  67.     static Color NameTextColor;
  68.  
  69.     static Color CrosshairColor;
  70.     static Color RecoilCircleColor;
  71.  
  72.     static Color BombBoxColor;
  73.     static Color BombTextColor;
  74.  
  75.     static Color WeaponDropedBoxColor;
  76.     static Color WeaponDropedTextColor;
  77.  
  78.     int WeaponsCount;
  79.  
  80.  
  81. };
  82. extern CVisuals* Visuals;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement