Files
UnrealEngine/Engine/Source/Programs/UnrealToolbox/IToolboxPluginHost.cs
2025-05-18 13:04:45 +08:00

16 lines
309 B
C#

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