mirror of
https://github.com/riperiperi/FreeSO
synced 2026-08-13 20:26:13 -04:00
13 lines
329 B
C#
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);
|
|
}
|
|
}
|