Files
tbd-station-14/Content.Shared/HUD/HudThemePrototype.cs
2022-05-13 17:59:03 +10:00

18 lines
439 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; } = string.Empty;
[IdDataFieldAttribute]
public string ID { get; } = string.Empty;
[DataField("path", required: true)]
public string Path { get; } = string.Empty;
}
}