ModernUO/Scripts/Items/Misc/Corpses/CorpseNameAttribute.cs

15 lines
No EOL
244 B
C#

using System;
namespace Server
{
[AttributeUsage( AttributeTargets.Class )]
public class CorpseNameAttribute : Attribute
{
public string Name { get; }
public CorpseNameAttribute( string name )
{
Name = name;
}
}
}