Files
ReshadePluginsCore/SilentHillF/SDK/AudioExtensions_structs.hpp

111 lines
6.4 KiB
C++
Raw Normal View History

2025-09-27 20:56:09 +02:00
#pragma once
/*
* SDK generated by Dumper-7
*
* https://github.com/Encryqed/Dumper-7
*/
// Package: AudioExtensions
#include "Basic.hpp"
namespace SDK
{
// Enum AudioExtensions.ESoundWaveCloudStreamingPlatformProjectEnableType
// NumValues: 0x0003
enum class ESoundWaveCloudStreamingPlatformProjectEnableType : uint8
{
Enabled = 0,
Disabled = 1,
ESoundWaveCloudStreamingPlatformProjectEnableType_MAX = 2,
};
// Enum AudioExtensions.ESoundWaveCloudStreamingPlatformEnableType
// NumValues: 0x0004
enum class ESoundWaveCloudStreamingPlatformEnableType : uint8
{
Inherited = 0,
Disabled = 1,
SWC_MultipleValues = 2,
ESoundWaveCloudStreamingPlatformEnableType_MAX = 3,
};
// Enum AudioExtensions.EAudioParameterType
// NumValues: 0x000F
enum class EAudioParameterType : uint8
{
None = 0,
Boolean = 1,
Integer = 2,
Float = 3,
String = 4,
Object = 5,
NoneArray = 6,
BooleanArray = 7,
IntegerArray = 8,
FloatArray = 9,
StringArray = 10,
ObjectArray = 11,
Trigger = 12,
COUNT = 13,
EAudioParameterType_MAX = 14,
};
// ScriptStruct AudioExtensions.SoundGeneratorOutput
// 0x0008 (0x0008 - 0x0000)
struct FSoundGeneratorOutput
{
public:
class FName Name; // 0x0000(0x0008)(BlueprintVisible, BlueprintReadOnly, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
};
DUMPER7_ASSERTS_FSoundGeneratorOutput;
// ScriptStruct AudioExtensions.SoundWaveCloudStreamingPlatformProjectSettings
// 0x0001 (0x0001 - 0x0000)
struct FSoundWaveCloudStreamingPlatformProjectSettings final
{
public:
ESoundWaveCloudStreamingPlatformProjectEnableType EnablementSetting; // 0x0000(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
};
DUMPER7_ASSERTS_FSoundWaveCloudStreamingPlatformProjectSettings;
// ScriptStruct AudioExtensions.SoundWaveCloudStreamingPlatformSettings
// 0x0001 (0x0001 - 0x0000)
struct FSoundWaveCloudStreamingPlatformSettings final
{
public:
ESoundWaveCloudStreamingPlatformEnableType EnablementSetting; // 0x0000(0x0001)(Edit, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
};
DUMPER7_ASSERTS_FSoundWaveCloudStreamingPlatformSettings;
// ScriptStruct AudioExtensions.AudioParameter
// 0x00A0 (0x00A0 - 0x0000)
struct FAudioParameter
{
public:
class FName ParamName; // 0x0000(0x0008)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
float FloatParam; // 0x0008(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
bool BoolParam; // 0x000C(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
uint8 Pad_D[0x3]; // 0x000D(0x0003)(Fixing Size After Last Property [ Dumper-7 ])
int32 IntParam; // 0x0010(0x0004)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
uint8 Pad_14[0x4]; // 0x0014(0x0004)(Fixing Size After Last Property [ Dumper-7 ])
class UObject* ObjectParam; // 0x0018(0x0008)(Edit, BlueprintVisible, ZeroConstructor, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic)
class FString StringParam; // 0x0020(0x0010)(Edit, BlueprintVisible, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
TArray<float> ArrayFloatParam; // 0x0030(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic)
TArray<bool> ArrayBoolParam; // 0x0040(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic)
TArray<int32> ArrayIntParam; // 0x0050(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic)
TArray<class UObject*> ArrayObjectParam; // 0x0060(0x0010)(Edit, BlueprintVisible, ZeroConstructor, UObjectWrapper, NativeAccessSpecifierPublic)
TArray<class FString> ArrayStringParam; // 0x0070(0x0010)(Edit, BlueprintVisible, ZeroConstructor, NativeAccessSpecifierPublic)
EAudioParameterType ParamType; // 0x0080(0x0001)(Edit, BlueprintVisible, ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
uint8 Pad_81[0x3]; // 0x0081(0x0003)(Fixing Size After Last Property [ Dumper-7 ])
class FName TypeName; // 0x0084(0x0008)(ZeroConstructor, IsPlainOldData, NoDestructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
uint8 Pad_8C[0x14]; // 0x008C(0x0014)(Fixing Struct Size After Last Property [ Dumper-7 ])
};
DUMPER7_ASSERTS_FAudioParameter;
}