2019-12-26 14:45:42 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2018-06-07 18:49:50 -04:00
|
|
|
|
|
|
|
|
#include "TimeSynchronizationSource.h"
|
|
|
|
|
|
2022-09-24 13:57:58 -04:00
|
|
|
#include UE_INLINE_GENERATED_CPP_BY_NAME(TimeSynchronizationSource)
|
|
|
|
|
|
2019-02-08 10:41:54 -05:00
|
|
|
#if WITH_EDITOR
|
|
|
|
|
#include "Widgets/SNullWidget.h"
|
|
|
|
|
#include "Widgets/SWidget.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2018-06-07 18:49:50 -04:00
|
|
|
UTimeSynchronizationSource::UTimeSynchronizationSource(const FObjectInitializer& ObjectInitializer)
|
|
|
|
|
: Super(ObjectInitializer)
|
|
|
|
|
, bUseForSynchronization(true)
|
|
|
|
|
{
|
|
|
|
|
|
2019-02-08 10:41:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if WITH_EDITOR
|
|
|
|
|
TSharedRef<SWidget> UTimeSynchronizationSource::GetVisualWidget() const
|
|
|
|
|
{
|
|
|
|
|
return SNullWidget::NullWidget;
|
|
|
|
|
};
|
2022-09-24 13:57:58 -04:00
|
|
|
#endif
|