mirror of
https://github.com/neverlosecc/source2sdk.git
synced 2025-04-19 04:38:09 +00:00
32 lines
872 B
C++
32 lines
872 B
C++
#pragma once
|
|
#include "source2sdk/client/C_DOTA_BaseNPC_Hero.hpp"
|
|
#include "source2sdk/source2gen.hpp"
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
// /////////////////////////////////////////////////////////////
|
|
// Module: client
|
|
// Created using source2gen - github.com/neverlosecc/source2gen
|
|
// /////////////////////////////////////////////////////////////
|
|
|
|
namespace source2sdk::client
|
|
{
|
|
// Registered alignment: 0x8
|
|
// Alignment: 0x8
|
|
// Standard-layout class: false
|
|
// Size: 0x1b90
|
|
// Has VTable
|
|
// Construct allowed
|
|
// MClassHasEntityLimitedDataDesc
|
|
// MNetworkAssumeNotNetworkable
|
|
#pragma pack(push, 1)
|
|
class CDOTA_Unit_Hero_Alchemist : public client::C_DOTA_BaseNPC_Hero
|
|
{
|
|
public:
|
|
// No schema binary for binding
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
static_assert(sizeof(CDOTA_Unit_Hero_Alchemist) == 0x1b90);
|
|
};
|