15 lines
265 B
C++
15 lines
265 B
C++
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
#include "BusyCursor.h"
|
||
|
|
|
||
|
|
static int32 GScopedBusyCursorReferenceCounter = 0;
|
||
|
|
|
||
|
|
FScopedBusyCursor::FScopedBusyCursor()
|
||
|
|
{
|
||
|
|
// @todo Replace with a slate busy cursor.
|
||
|
|
}
|
||
|
|
|
||
|
|
FScopedBusyCursor::~FScopedBusyCursor()
|
||
|
|
{
|
||
|
|
}
|