31 lines
867 B
C++
31 lines
867 B
C++
/************************************************************************************
|
|
* *
|
|
* Copyright (C) 2020 Truong Bui. *
|
|
* Website: https://github.com/truong-bui/AsyncLoadingScreen *
|
|
* Licensed under the MIT License. See 'LICENSE' file for full license information. *
|
|
* *
|
|
************************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "SLoadingScreenLayout.h"
|
|
|
|
struct FALoadingScreenSettings;
|
|
struct FSidebarLayoutSettings;
|
|
|
|
/**
|
|
* Sidebar layout loading screen
|
|
*/
|
|
class SSidebarLayout : public SLoadingScreenLayout
|
|
{
|
|
public:
|
|
SLATE_BEGIN_ARGS(SSidebarLayout) {}
|
|
|
|
SLATE_END_ARGS()
|
|
|
|
/**
|
|
* Construct this widget
|
|
*/
|
|
void Construct(const FArguments& InArgs, const FALoadingScreenSettings& Settings, const FSidebarLayoutSettings& LayoutSettings);
|
|
};
|