mirror of
https://github.com/neverlosecc/source2sdk.git
synced 2025-06-07 10:04:14 +00:00
22 lines
592 B
C++
22 lines
592 B
C++
#pragma once
|
|
#include <cstdint>
|
|
|
|
// /////////////////////////////////////////////////////////////
|
|
// Module: animgraphlib
|
|
// Created using source2gen - github.com/neverlosecc/source2gen
|
|
// /////////////////////////////////////////////////////////////
|
|
|
|
namespace source2sdk::animgraphlib
|
|
{
|
|
// Enumerator count: 2
|
|
// Alignment: 4
|
|
// Size: 0x4
|
|
enum class AnimNodeNetworkMode : std::uint32_t
|
|
{
|
|
// MPropertyFriendlyName "Server Authoritative"
|
|
ServerAuthoritative = 0x0,
|
|
// MPropertyFriendlyName "Client Simulate"
|
|
ClientSimulate = 0x1,
|
|
};
|
|
};
|