Files
UnrealEngineUWP/Engine/Source/Programs/UnrealToolbox/IToolboxPluginHost.cs
ben marsh 2af764e351 Merging latest Horde changes from Main.
[CL 36756615 by ben marsh in 5.5 branch]
2024-10-01 19:23:06 -04:00

16 lines
303 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealToolbox
{
/// <summary>
/// Interface for the tray app host application
/// </summary>
interface ITrayAppHost
{
/// <summary>
/// Notifies the host that a status change has ocurred
/// </summary>
void UpdateStatus();
}
}