PalWorld-NetCrack/libs/SDKLibrary/SDK/SteamSockets_functions.cpp
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

73 lines
1.6 KiB
C++

#pragma once
// Dumped with Dumper-7!
#include "../SDK.hpp"
namespace SDK
{
//---------------------------------------------------------------------------------------------------------------------
// FUNCTIONS
//---------------------------------------------------------------------------------------------------------------------
// Class SteamSockets.SteamSocketsNetConnection
// (None)
class UClass* USteamSocketsNetConnection::StaticClass()
{
static class UClass* Clss = nullptr;
if (!Clss)
Clss = UObject::FindClassFast("SteamSocketsNetConnection");
return Clss;
}
// SteamSocketsNetConnection SteamSockets.Default__SteamSocketsNetConnection
// (Public, ClassDefaultObject, ArchetypeObject)
class USteamSocketsNetConnection* USteamSocketsNetConnection::GetDefaultObj()
{
static class USteamSocketsNetConnection* Default = nullptr;
if (!Default)
Default = static_cast<USteamSocketsNetConnection*>(USteamSocketsNetConnection::StaticClass()->DefaultObject);
return Default;
}
// Class SteamSockets.SteamSocketsNetDriver
// (None)
class UClass* USteamSocketsNetDriver::StaticClass()
{
static class UClass* Clss = nullptr;
if (!Clss)
Clss = UObject::FindClassFast("SteamSocketsNetDriver");
return Clss;
}
// SteamSocketsNetDriver SteamSockets.Default__SteamSocketsNetDriver
// (Public, ClassDefaultObject, ArchetypeObject)
class USteamSocketsNetDriver* USteamSocketsNetDriver::GetDefaultObj()
{
static class USteamSocketsNetDriver* Default = nullptr;
if (!Default)
Default = static_cast<USteamSocketsNetDriver*>(USteamSocketsNetDriver::StaticClass()->DefaultObject);
return Default;
}
}