Files
OldThink/Content.Shared/HUD/HudThemePrototype.cs

18 lines
439 B
C#
Raw Normal View History

using Robust.Shared.Prototypes;
2021-06-09 22:19:39 +02:00
namespace Content.Shared.HUD
{
[Prototype("hudTheme")]
public sealed class HudThemePrototype : IPrototype
{
[DataField("name", required: true)]
public string Name { get; } = string.Empty;
2022-04-03 02:01:22 +02:00
[IdDataFieldAttribute]
public string ID { get; } = string.Empty;
[DataField("path", required: true)]
public string Path { get; } = string.Empty;
}
}