mirror of
https://github.com/neverlosecc/source2sdk.git
synced 2025-04-21 21:58:13 +00:00
32 lines
892 B
C++
32 lines
892 B
C++
#pragma once
|
|
#include "source2sdk/client/C_DOTA_BaseNPC_HoldoutTower.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: 0x18e8
|
|
// Has VTable
|
|
// Construct allowed
|
|
// MNetworkAssumeNotNetworkable
|
|
//
|
|
// static metadata: MNetworkIncludeByName "CGameSceneNode::m_angRotation"
|
|
#pragma pack(push, 1)
|
|
class C_DOTA_BaseNPC_SDKTower : public client::C_DOTA_BaseNPC_HoldoutTower
|
|
{
|
|
public:
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
static_assert(sizeof(C_DOTA_BaseNPC_SDKTower) == 0x18e8);
|
|
};
|