From 4d87294be639f6cbc5bd985243d0a26bc79abf01 Mon Sep 17 00:00:00 2001 From: "Nicholas St. Germain" Date: Wed, 16 Oct 2024 11:55:43 -0500 Subject: [PATCH] Add missing Build Imports --- Scripts/BuildPlugin.bat | 2 +- Source/Thirdweb/Private/Wallets/ThirdwebInAppWalletHandle.cpp | 2 ++ Source/Thirdweb/Public/ThirdwebMacros.h | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Scripts/BuildPlugin.bat b/Scripts/BuildPlugin.bat index bad7316..5dba93e 100644 --- a/Scripts/BuildPlugin.bat +++ b/Scripts/BuildPlugin.bat @@ -1,2 +1,2 @@ @echo off -ue4 package -NoHostPlatform -TargetPlatforms=Win64+Android+Linux+LinuxArm64 \ No newline at end of file +ue4 package -NoHostPlatform -TargetPlatforms=Win64+Android+Linux+LinuxArm64 -Package=%UserProfile%\Downloads\ThirdwebSDK_Dist \ No newline at end of file diff --git a/Source/Thirdweb/Private/Wallets/ThirdwebInAppWalletHandle.cpp b/Source/Thirdweb/Private/Wallets/ThirdwebInAppWalletHandle.cpp index d0b1d42..090c053 100644 --- a/Source/Thirdweb/Private/Wallets/ThirdwebInAppWalletHandle.cpp +++ b/Source/Thirdweb/Private/Wallets/ThirdwebInAppWalletHandle.cpp @@ -15,6 +15,8 @@ #include "Misc/DefaultValueHelper.h" +#include "Tasks/Task.h" + #define CHECK_ECOSYSTEM(ErrorDelegate) \ if (UThirdwebRuntimeSettings::GetEcosystemId().IsEmpty()) \ { \ diff --git a/Source/Thirdweb/Public/ThirdwebMacros.h b/Source/Thirdweb/Public/ThirdwebMacros.h index 1eb6334..f3f653d 100644 --- a/Source/Thirdweb/Public/ThirdwebMacros.h +++ b/Source/Thirdweb/Public/ThirdwebMacros.h @@ -3,6 +3,8 @@ // ReSharper disable CppUE4CodingStandardNamingViolationWarning,CppUE4CodingStandardNamingViolationWarning #pragma once +#include "Delegates/DelegateCombinations.h" + #define TO_RUST_STRING(v) v.IsEmpty() ? nullptr : TCHAR_TO_UTF8(*v) #define TO_RUST_TIMESTAMP(v) v == FDateTime::MinValue() ? 0 : v.ToUnixTimestamp()