Skip to content

Commit

Permalink
Merge pull request #143 from Tyler-Admin/master
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladislavik36 authored Jul 18, 2021
2 parents 67c15dc + 99a659a commit c37d4bc
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions CSGOSimple/valve_sdk/misc/glow_outline_effect.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,30 +7,30 @@ class GlowObjectDefinition_t
{
public:
GlowObjectDefinition_t() { memset(this, 0, sizeof(*this)); }

class IClientEntity* m_pEntity; //0x0000

int32_t m_nNextFreeSlot; //0x0000
class IClientEntity* m_pEntity; //0x0004
union
{
Vector m_vGlowColor; //0x0004
Vector m_vGlowColor; //0x0008
struct
{
float m_flRed; //0x0004
float m_flGreen; //0x0008
float m_flBlue; //0x000C
float m_flRed; //0x0012
float m_flGreen; //0x000C
float m_flBlue; //0x0010
};
};
float m_flAlpha; //0x0010
uint8_t pad_0014[4]; //0x0014
float m_flSomeFloat; //0x0018
uint8_t pad_001C[4]; //0x001C
float m_flAnotherFloat; //0x0020
bool m_bRenderWhenOccluded; //0x0024
bool m_bRenderWhenUnoccluded; //0x0025
bool m_bFullBloomRender; //0x0026
uint8_t pad_0027[5]; //0x0027
int32_t m_nGlowStyle; //0x002C
int32_t m_nSplitScreenSlot; //0x0030
int32_t m_nNextFreeSlot; //0x0034
float m_flAlpha; //0x0014
uint8_t pad_0014[4]; //0x0018
float m_flSomeFloat; //0x001C
uint8_t pad_001C[4]; //0x0020
float m_flAnotherFloat; //0x0024
bool m_bRenderWhenOccluded; //0x0025
bool m_bRenderWhenUnoccluded; //0x0026
bool m_bFullBloomRender; //0x0027
uint8_t pad_0027[5]; //0x002C
int32_t m_nGlowStyle; //0x0030
int32_t m_nSplitScreenSlot; //0x0034

bool IsUnused() const { return m_nNextFreeSlot != GlowObjectDefinition_t::ENTRY_IN_USE; }

Expand Down

0 comments on commit c37d4bc

Please sign in to comment.