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