using System; namespace Robust.Shared.GameObjects { /// /// Defines Name that this component is represented with in prototypes. /// [AttributeUsage(AttributeTargets.Class)] public sealed class ComponentProtoNameAttribute : Attribute { public string PrototypeName { get; } public ComponentProtoNameAttribute(string prototypeName) { PrototypeName = prototypeName; } } }