mirror of
https://github.com/swordbluesword/PalWorld-NetCrack.git
synced 2025-04-29 02:47:17 +09:00
38 lines
1007 B
C++
38 lines
1007 B
C++
#pragma once
|
|
|
|
// Dumped with Dumper-7!
|
|
|
|
|
|
namespace SDK
|
|
{
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
// ENUMS
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
enum class EUNISSupport : uint8
|
|
{
|
|
Supported = 0,
|
|
NotSupported = 1,
|
|
UNISSupport_MAX = 2,
|
|
};
|
|
|
|
enum class EUNISMode : uint8
|
|
{
|
|
Off = 0,
|
|
UltraQuality = 1,
|
|
Quality = 2,
|
|
Balanced = 3,
|
|
Performance = 4,
|
|
Custom = 5,
|
|
UNISMode_MAX = 6,
|
|
};
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
// STRUCTS
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
}
|
|
|
|
|