freeso/TSOClient/FSO.UI/Framework/IUIProcess.cs
2023-11-25 15:55:49 +00:00

13 lines
329 B
C#

using FSO.Common.Rendering.Framework.Model;
namespace FSO.Client.UI.Framework
{
/// <summary>
/// Non-visual UI component. For example, an animation library that needs to be involved
/// with the update loop
/// </summary>
public interface IUIProcess
{
void Update(UpdateState state);
}
}