初始提交: UE5.3项目基础框架
This commit is contained in:
@ -0,0 +1,21 @@
|
||||
// Copyright 2020-2024 CesiumGS, Inc. and Contributors
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "Widgets/SCompoundWidget.h"
|
||||
|
||||
class FArguments;
|
||||
|
||||
class IonLoginPanel : public SCompoundWidget {
|
||||
SLATE_BEGIN_ARGS(IonLoginPanel) {}
|
||||
SLATE_END_ARGS()
|
||||
|
||||
void Construct(const FArguments& InArgs);
|
||||
|
||||
private:
|
||||
void LaunchBrowserAgain();
|
||||
|
||||
FReply SignIn();
|
||||
FReply CancelSignIn();
|
||||
FReply CopyAuthorizeUrlToClipboard();
|
||||
};
|
||||
Reference in New Issue
Block a user