mirror of
https://github.com/swordbluesword/PalWorld-NetCrack.git
synced 2025-04-29 02:47:17 +09:00
45 lines
999 B
C++
45 lines
999 B
C++
#pragma once
|
|
|
|
// Dumped with Dumper-7!
|
|
|
|
|
|
#include "../SDK.hpp"
|
|
|
|
namespace SDK
|
|
{
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
// FUNCTIONS
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
// Class LiveLinkCamera.LiveLinkCameraController
|
|
// (None)
|
|
|
|
class UClass* ULiveLinkCameraController::StaticClass()
|
|
{
|
|
static class UClass* Clss = nullptr;
|
|
|
|
if (!Clss)
|
|
Clss = UObject::FindClassFast("LiveLinkCameraController");
|
|
|
|
return Clss;
|
|
}
|
|
|
|
|
|
// LiveLinkCameraController LiveLinkCamera.Default__LiveLinkCameraController
|
|
// (Public, ClassDefaultObject, ArchetypeObject)
|
|
|
|
class ULiveLinkCameraController* ULiveLinkCameraController::GetDefaultObj()
|
|
{
|
|
static class ULiveLinkCameraController* Default = nullptr;
|
|
|
|
if (!Default)
|
|
Default = static_cast<ULiveLinkCameraController*>(ULiveLinkCameraController::StaticClass()->DefaultObject);
|
|
|
|
return Default;
|
|
}
|
|
|
|
}
|
|
|
|
|