2022-12-02 17:46:58 -05:00
|
|
|
|
namespace Content.Client.UserInterface.Fragments;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The component used for defining a ui fragment to attach to an entity
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <remarks>
|
|
|
|
|
|
/// This is used primarily for PDA cartridges.
|
|
|
|
|
|
/// </remarks>
|
|
|
|
|
|
/// <seealso cref="UIFragment"/>
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class UIFragmentComponent : Component
|
2022-12-02 17:46:58 -05:00
|
|
|
|
{
|
|
|
|
|
|
[DataField("ui", true)]
|
|
|
|
|
|
public UIFragment? Ui;
|
|
|
|
|
|
}
|