mirror of
https://github.com/neverlosecc/source2sdk.git
synced 2025-06-07 10:04:14 +00:00
29 lines
757 B
C++
29 lines
757 B
C++
#pragma once
|
|
#include "source2sdk/animlib/CNmBlendTaskBase.hpp"
|
|
#include "source2sdk/source2gen.hpp"
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
// /////////////////////////////////////////////////////////////
|
|
// Module: animlib
|
|
// Created using source2gen - github.com/neverlosecc/source2gen
|
|
// /////////////////////////////////////////////////////////////
|
|
|
|
namespace source2sdk::animlib
|
|
{
|
|
// Registered alignment: 0x8
|
|
// Alignment: 0x8
|
|
// Standard-layout class: false
|
|
// Size: 0xb8
|
|
// Has VTable
|
|
#pragma pack(push, 1)
|
|
class CNmAdditiveBlendTask : public animlib::CNmBlendTaskBase
|
|
{
|
|
public:
|
|
// No schema binary for binding
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
static_assert(sizeof(CNmAdditiveBlendTask) == 0xb8);
|
|
};
|