Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
/*
Plugin-SDK (Grand Theft Auto Vice City) header file
Authors: GTA Community. See more here
https://github.com/DK22Pac/plugin-sdk
Do not delete this comment block. Respect others' work!
*/
#pragma once
#include "PluginBase.h"
#include "CVector.h"
#include "CRGBA.h"
#include "RenderWare.h"
class CWeaponEffects {
public:
bool m_bActive;
char _pad0[3];
CVector m_vecPosn;
CRGBA m_Color;
float m_fSize;
float m_fRotation;
//funcs
CWeaponEffects();
static void ClearCrossHair();
static void Init();
static void MarkTarget(CVector pos, unsigned char red, unsigned char green, unsigned char blue, unsigned char alpha, float size);
static void Render();
static void Shutdown();
};
VALIDATE_SIZE(CWeaponEffects, 0x1C);
extern RwTexture*& gpCrossHairTex; // RwTexture* gpCrossHairTex
extern CWeaponEffects& gCrossHair; // CWeaponEffects gCrossHair