Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

26 lines
501 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#if USE_ANDROID_JNI
#include "Android/AndroidJniGameActivity.h"
namespace UE::Jni
{
struct FWebAuth
{
using PartialClass = FGameActivity;
static void JNICALL handleAuthSessionResponse(JNIEnv* env, jobject thiz, jstring redirectURL);
static constexpr FNativeMethod NativeMethods[]
{
UE_JNI_NATIVE_METHOD(handleAuthSessionResponse)
};
};
template struct TInitialize<FWebAuth>;
}
#endif