mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
14 lines
414 B
C#
14 lines
414 B
C#
using Robust.Shared.Prototypes;
|
|
using Robust.Shared.Utility;
|
|
|
|
namespace Content.Shared.Decals
|
|
{
|
|
[Prototype("decal")]
|
|
public sealed class DecalPrototype : IPrototype
|
|
{
|
|
[IdDataFieldAttribute] public string ID { get; } = null!;
|
|
[DataField("sprite")] public SpriteSpecifier Sprite { get; } = SpriteSpecifier.Invalid;
|
|
[DataField("tags")] public List<string> Tags = new();
|
|
}
|
|
}
|