mirror of
https://github.com/neverlosecc/source2sdk.git
synced 2025-06-07 10:04:14 +00:00
28 lines
710 B
C++
28 lines
710 B
C++
#pragma once
|
|
|
|
#include "source2sdk/source2gen/source2gen.hpp"
|
|
#include <cstddef>
|
|
#include <cstdint>
|
|
|
|
// /////////////////////////////////////////////////////////////
|
|
// Module: animgraphlib
|
|
// Created using source2gen - github.com/neverlosecc/source2gen
|
|
// /////////////////////////////////////////////////////////////
|
|
|
|
namespace source2sdk
|
|
{
|
|
namespace animgraphlib
|
|
{
|
|
// Enumerator count: 2
|
|
// Alignment: 4
|
|
// Size: 0x4
|
|
enum class Blend2DMode : std::uint32_t
|
|
{
|
|
// MPropertyFriendlyName "General"
|
|
Blend2DMode_General = 0x0,
|
|
// MPropertyFriendlyName "Directional"
|
|
Blend2DMode_Directional = 0x1,
|
|
};
|
|
};
|
|
};
|