mirror of
https://github.com/neverlosecc/source2sdk.git
synced 2025-04-19 04:38:09 +00:00
32 lines
888 B
C++
32 lines
888 B
C++
#pragma once
|
|
#include "source2sdk/client/C_DOTA_BaseNPC_Additive.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: 0x1808
|
|
// Has VTable
|
|
// Construct allowed
|
|
// MClassHasEntityLimitedDataDesc
|
|
// MNetworkAssumeNotNetworkable
|
|
#pragma pack(push, 1)
|
|
class CDOTA_BaseNPC_Seasonal_Dragon : public client::C_DOTA_BaseNPC_Additive
|
|
{
|
|
public:
|
|
// No schema binary for binding
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
static_assert(sizeof(CDOTA_BaseNPC_Seasonal_Dragon) == 0x1808);
|
|
};
|