mirror of
https://github.com/swordbluesword/PalWorld-NetCrack.git
synced 2025-04-29 02:47:17 +09:00
42 lines
2.0 KiB
C++
42 lines
2.0 KiB
C++
#pragma once
|
|
|
|
// Dumped with Dumper-7!
|
|
|
|
|
|
namespace SDK
|
|
{
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
// ENUMS
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
enum class ESoundwaveSampleRateSettings : uint8
|
|
{
|
|
Max = 0,
|
|
High = 1,
|
|
Medium = 2,
|
|
Low = 3,
|
|
Min = 4,
|
|
MatchDevice_DEPRECATED = 5,
|
|
};
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
// STRUCTS
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
// 0x10 (0x10 - 0x0)
|
|
// ScriptStruct AudioPlatformConfiguration.PlatformRuntimeAudioCompressionOverrides
|
|
struct FPlatformRuntimeAudioCompressionOverrides
|
|
{
|
|
public:
|
|
bool bOverrideCompressionTimes; // 0x0(0x1)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
|
|
uint8 Pad_21EF[0x3]; // Fixing Size After Last Property [ Dumper-7 ]
|
|
float DurationThreshold; // 0x4(0x4)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
|
|
int32 MaxNumRandomBranches; // 0x8(0x4)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
|
|
int32 SoundCueQualityIndex; // 0xC(0x4)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
|
|
};
|
|
|
|
}
|
|
|
|
|