18 lines
469 B
C#
18 lines
469 B
C#
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared.HUD
|
|
{
|
|
[Prototype("hudTheme")]
|
|
public sealed class HudThemePrototype : IPrototype
|
|
{
|
|
[DataField("name", required: true)]
|
|
public string Name { get; private set; } = string.Empty;
|
|
|
|
[IdDataField]
|
|
public string ID { get; private set; } = string.Empty;
|
|
|
|
[DataField("path", required: true)]
|
|
public string Path { get; private set; } = string.Empty;
|
|
}
|
|
}
|