using Content.Client.GameObjects.Components.Actor;
using SS14.Client.UserInterface;
namespace Content.Client.GameObjects.Components.Mobs
{
///
/// An interface which is gathered to assemble the character window from multiple components
///
public interface ICharacterUI
{
///
/// The godot control which holds the character user interface to be included in the window
///
Control Scene { get; }
///
/// The order it will appear in the character UI, higher is lower
///
UIPriority Priority { get; }
}
}