2022-05-13 00:59:03 -07:00
|
|
|
|
using Robust.Shared.Prototypes;
|
2021-12-03 15:35:57 +01:00
|
|
|
|
using Robust.Shared.Utility;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Decals
|
|
|
|
|
|
{
|
|
|
|
|
|
[Prototype("decal")]
|
2022-02-16 00:23:23 -07:00
|
|
|
|
public sealed class DecalPrototype : IPrototype
|
2021-12-03 15:35:57 +01:00
|
|
|
|
{
|
2022-04-03 02:01:22 +02:00
|
|
|
|
[IdDataFieldAttribute] public string ID { get; } = null!;
|
2021-12-03 15:35:57 +01:00
|
|
|
|
[DataField("sprite")] public SpriteSpecifier Sprite { get; } = SpriteSpecifier.Invalid;
|
|
|
|
|
|
[DataField("tags")] public List<string> Tags = new();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|