2021-04-11 17:43:53 -05:00
|
|
|
|
using Robust.Shared.Prototypes;
|
|
|
|
|
|
using Robust.Shared.Serialization.Manager.Attributes;
|
|
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
|
namespace Content.Shared.HUD
|
2021-04-11 17:43:53 -05:00
|
|
|
|
{
|
|
|
|
|
|
[Prototype("hudTheme")]
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public sealed class HudThemePrototype : IPrototype
|
2021-04-11 17:43:53 -05:00
|
|
|
|
{
|
2021-05-04 15:37:16 +02:00
|
|
|
|
[DataField("name", required: true)]
|
2021-04-11 17:43:53 -05:00
|
|
|
|
public string Name { get; } = string.Empty;
|
|
|
|
|
|
|
2021-05-04 15:37:16 +02:00
|
|
|
|
[DataField("id", required: true)]
|
2021-04-11 17:43:53 -05:00
|
|
|
|
public string ID { get; } = string.Empty;
|
|
|
|
|
|
|
2021-05-04 15:37:16 +02:00
|
|
|
|
[DataField("path", required: true)]
|
2021-04-11 17:43:53 -05:00
|
|
|
|
public string Path { get; } = string.Empty;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|