Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

18 lines
290 B
C++

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