forked from gcdsfh/PMDT
first submle
This commit is contained in:
Executable
+90
@@ -0,0 +1,90 @@
|
||||
//PUBGM(0.13.5)32位SDK
|
||||
//作者:清华
|
||||
//Telegram:@qinghuanb666
|
||||
//生成时间:Fri Apr 18 20:44:40 2025
|
||||
|
||||
#include "../SDK.hpp"
|
||||
|
||||
namespace SDK
|
||||
{
|
||||
//---------------------------------------------------------------------------
|
||||
//Functions
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
// Function ImgMedia.ImgMediaSource.SetSequencePath
|
||||
// (Final, Native, Public, BlueprintCallable)
|
||||
// Parameters:
|
||||
// struct FString Path (Parm, ZeroConstructor)
|
||||
|
||||
void UImgMediaSource::SetSequencePath(const struct FString& Path)
|
||||
{
|
||||
static UFunction *pFunc = 0;
|
||||
if (!pFunc)
|
||||
pFunc = UObject::FindObject<UFunction>("Function ImgMedia.ImgMediaSource.SetSequencePath");
|
||||
|
||||
UImgMediaSource_SetSequencePath_Params params;
|
||||
params.Path = Path;
|
||||
|
||||
auto flags = pFunc->FunctionFlags;
|
||||
pFunc->FunctionFlags |= 0x400;
|
||||
|
||||
UObject *currentObj = (UObject *) this;
|
||||
currentObj->ProcessEvent(pFunc, ¶ms);
|
||||
|
||||
pFunc->FunctionFlags = flags;
|
||||
}
|
||||
|
||||
|
||||
// Function ImgMedia.ImgMediaSource.GetSequencePath
|
||||
// (Final, Native, Public, BlueprintCallable, BlueprintPure, Const)
|
||||
// Parameters:
|
||||
// struct FString ReturnValue (ConstParm, Parm, OutParm, ZeroConstructor, ReturnParm)
|
||||
|
||||
struct FString UImgMediaSource::GetSequencePath()
|
||||
{
|
||||
static UFunction *pFunc = 0;
|
||||
if (!pFunc)
|
||||
pFunc = UObject::FindObject<UFunction>("Function ImgMedia.ImgMediaSource.GetSequencePath");
|
||||
|
||||
UImgMediaSource_GetSequencePath_Params params;
|
||||
|
||||
auto flags = pFunc->FunctionFlags;
|
||||
pFunc->FunctionFlags |= 0x400;
|
||||
|
||||
UObject *currentObj = (UObject *) this;
|
||||
currentObj->ProcessEvent(pFunc, ¶ms);
|
||||
|
||||
pFunc->FunctionFlags = flags;
|
||||
|
||||
return params.ReturnValue;
|
||||
}
|
||||
|
||||
|
||||
// Function ImgMedia.ImgMediaSource.GetProxies
|
||||
// (Final, Native, Public, HasOutParms, BlueprintCallable, BlueprintPure, Const)
|
||||
// Parameters:
|
||||
// TArray<struct FString> OutProxies (Parm, OutParm, ZeroConstructor)
|
||||
|
||||
void UImgMediaSource::GetProxies(TArray<struct FString>* OutProxies)
|
||||
{
|
||||
static UFunction *pFunc = 0;
|
||||
if (!pFunc)
|
||||
pFunc = UObject::FindObject<UFunction>("Function ImgMedia.ImgMediaSource.GetProxies");
|
||||
|
||||
UImgMediaSource_GetProxies_Params params;
|
||||
|
||||
auto flags = pFunc->FunctionFlags;
|
||||
pFunc->FunctionFlags |= 0x400;
|
||||
|
||||
UObject *currentObj = (UObject *) this;
|
||||
currentObj->ProcessEvent(pFunc, ¶ms);
|
||||
|
||||
pFunc->FunctionFlags = flags;
|
||||
|
||||
if (OutProxies != nullptr)
|
||||
*OutProxies = params.OutProxies;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user