PalWorld-NetCrack/libs/SDKLibrary/SDK/VectorVM_structs.hpp
NightFyre 9a743d2b16 toggle fullbright feature
- Adjusted SDK UGameViewportClient class members and padding
- Created helper function to get local player
- precompile headers for SDK
- SDK made into a static library ( single compile as its never changed )
2024-01-29 06:39:29 -05:00

37 lines
991 B
C++

#pragma once
// Dumped with Dumper-7!
namespace SDK
{
//---------------------------------------------------------------------------------------------------------------------
// ENUMS
//---------------------------------------------------------------------------------------------------------------------
enum class EVectorVMBaseTypes : uint8
{
Float = 0,
Int = 1,
Bool = 2,
Num = 3,
EVectorVMBaseTypes_MAX = 4,
};
enum class EVectorVMOperandLocation : uint8
{
Register = 0,
Constant = 1,
Num = 2,
EVectorVMOperandLocation_MAX = 3,
};
//---------------------------------------------------------------------------------------------------------------------
// STRUCTS
//---------------------------------------------------------------------------------------------------------------------
}