mirror of
https://github.com/swordbluesword/PalWorld-NetCrack.git
synced 2025-04-29 02:47:17 +09:00
65 lines
2.3 KiB
C++
65 lines
2.3 KiB
C++
#pragma once
|
|
|
|
// Dumped with Dumper-7!
|
|
|
|
|
|
namespace SDK
|
|
{
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
// ENUMS
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
enum class EMetaSoundMessageLevel : uint8
|
|
{
|
|
Error = 0,
|
|
Warning = 1,
|
|
Info = 2,
|
|
EMetaSoundMessageLevel_MAX = 3,
|
|
};
|
|
|
|
enum class EMetasoundSourceAudioFormat : uint8
|
|
{
|
|
Mono = 0,
|
|
Stereo = 1,
|
|
Quad = 2,
|
|
FiveDotOne = 3,
|
|
SevenDotOne = 4,
|
|
COUNT = 5,
|
|
EMetasoundSourceAudioFormat_MAX = 6,
|
|
};
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
// STRUCTS
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
// 0x20 (0x20 - 0x0)
|
|
// ScriptStruct MetasoundEngine.DefaultMetaSoundAssetAutoUpdateSettings
|
|
struct FDefaultMetaSoundAssetAutoUpdateSettings
|
|
{
|
|
public:
|
|
struct FSoftObjectPath Metasound; // 0x0(0x20)(Edit, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
|
|
};
|
|
|
|
// 0x10 (0x10 - 0x0)
|
|
// ScriptStruct MetasoundEngine.MetaSoundAssetDirectory
|
|
struct FMetaSoundAssetDirectory
|
|
{
|
|
public:
|
|
struct FDirectoryPath Directory; // 0x0(0x10)(Edit, BlueprintVisible, ZeroConstructor, HasGetValueTypeHash, NativeAccessSpecifierPublic)
|
|
};
|
|
|
|
// 0x30 (0x30 - 0x0)
|
|
// ScriptStruct MetasoundEngine.MetaSoundAsyncAssetDependencies
|
|
struct FMetaSoundAsyncAssetDependencies
|
|
{
|
|
public:
|
|
uint8 Pad_1A28[0x8]; // Fixing Size After Last Property [ Dumper-7 ]
|
|
class UObject* Metasound; // 0x8(0x8)(ZeroConstructor, Transient, NoDestructor, UObjectWrapper, HasGetValueTypeHash, NativeAccessSpecifierPublic)
|
|
uint8 Pad_1A2A[0x20]; // Fixing Size Of Struct [ Dumper-7 ]
|
|
};
|
|
|
|
}
|
|
|
|
|